mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Added missing @Override annotations.
This commit is contained in:
parent
b1be2dbaac
commit
5e8ca6778d
4 changed files with 15 additions and 6 deletions
|
@ -11,8 +11,7 @@
|
||||||
package org.eclipse.cdt.core.dom.ast;
|
package org.eclipse.cdt.core.dom.ast;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A composite type specifier represents a ocmposite structure (contains
|
* A composite type specifier represents a composite structure (contains declarations).
|
||||||
* declarations).
|
|
||||||
*
|
*
|
||||||
* @noextend This interface is not intended to be extended by clients.
|
* @noextend This interface is not intended to be extended by clients.
|
||||||
* @noimplement This interface is not intended to be implemented by clients.
|
* @noimplement This interface is not intended to be implemented by clients.
|
||||||
|
@ -101,5 +100,6 @@ public interface IASTCompositeTypeSpecifier extends IASTDeclSpecifier , IASTName
|
||||||
/**
|
/**
|
||||||
* @since 5.1
|
* @since 5.1
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public IASTCompositeTypeSpecifier copy();
|
public IASTCompositeTypeSpecifier copy();
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,10 +52,12 @@ public interface IASTCompoundStatement extends IASTStatement {
|
||||||
/**
|
/**
|
||||||
* @since 5.1
|
* @since 5.1
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public IASTCompoundStatement copy();
|
public IASTCompoundStatement copy();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 5.3
|
* @since 5.3
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public IASTCompoundStatement copy(CopyStyle style);
|
public IASTCompoundStatement copy(CopyStyle style);
|
||||||
}
|
}
|
||||||
|
|
|
@ -103,10 +103,12 @@ public interface IASTFunctionDefinition extends IASTDeclaration {
|
||||||
/**
|
/**
|
||||||
* @since 5.1
|
* @since 5.1
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public IASTFunctionDefinition copy();
|
public IASTFunctionDefinition copy();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 5.3
|
* @since 5.3
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public IASTFunctionDefinition copy(CopyStyle style);
|
public IASTFunctionDefinition copy(CopyStyle style);
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,11 +84,13 @@ public interface ICPPASTCompositeTypeSpecifier extends IASTCompositeTypeSpecifie
|
||||||
/**
|
/**
|
||||||
* @since 5.1
|
* @since 5.1
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public ICPPASTBaseSpecifier copy();
|
public ICPPASTBaseSpecifier copy();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 5.3
|
* @since 5.3
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public ICPPASTBaseSpecifier copy(CopyStyle style);
|
public ICPPASTBaseSpecifier copy(CopyStyle style);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -125,15 +127,18 @@ public interface ICPPASTCompositeTypeSpecifier extends IASTCompositeTypeSpecifie
|
||||||
/**
|
/**
|
||||||
* @since 5.1
|
* @since 5.1
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public ICPPClassScope getScope();
|
public ICPPClassScope getScope();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 5.1
|
* @since 5.1
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public ICPPASTCompositeTypeSpecifier copy();
|
public ICPPASTCompositeTypeSpecifier copy();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 5.3
|
* @since 5.3
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public ICPPASTCompositeTypeSpecifier copy(CopyStyle style);
|
public ICPPASTCompositeTypeSpecifier copy(CopyStyle style);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue