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-11-14 15:21:57 -08:00
parent 0eddb7c8b3
commit 496ce4cf38

View file

@ -6,8 +6,8 @@
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Doug Schaefer (IBM) - Initial API and implementation
* Markus Schorn (Wind River Systems)
* Doug Schaefer (IBM) - Initial API and implementation
* Markus Schorn (Wind River Systems)
*******************************************************************************/
package org.eclipse.cdt.core.dom.ast;
@ -18,7 +18,6 @@ package org.eclipse.cdt.core.dom.ast;
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IASTDeclSpecifier extends IASTNode {
/**
* No storage class specified.
*/
@ -52,11 +51,13 @@ public interface IASTDeclSpecifier extends IASTNode {
/**
* @since 5.1
*/
@Override
public IASTDeclSpecifier copy();
/**
* @since 5.3
*/
@Override
public IASTDeclSpecifier copy(CopyStyle style);
/**
@ -90,6 +91,4 @@ public interface IASTDeclSpecifier extends IASTNode {
*/
@Deprecated
public static final int sc_last = sc_register;
}