1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

@Override annotations.

This commit is contained in:
Sergey Prigogin 2011-12-20 16:08:39 -08:00
parent 35a66ea763
commit df445a2f06

View file

@ -19,7 +19,6 @@ package org.eclipse.cdt.core.dom.ast;
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
*/ */
public interface IASTBinaryExpression extends IASTExpression { public interface IASTBinaryExpression extends IASTExpression {
/** /**
* Node property that describes the relationship between an * Node property that describes the relationship between an
* <code>IASTBinaryExpression</code> and an <code>IASTExpression</code> * <code>IASTBinaryExpression</code> and an <code>IASTExpression</code>
@ -271,10 +270,12 @@ public interface IASTBinaryExpression extends IASTExpression {
/** /**
* @since 5.1 * @since 5.1
*/ */
@Override
public IASTBinaryExpression copy(); public IASTBinaryExpression copy();
/** /**
* @since 5.3 * @since 5.3
*/ */
@Override
public IASTBinaryExpression copy(CopyStyle style); public IASTBinaryExpression copy(CopyStyle style);
} }