1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-20 23:45:23 +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 * http://www.eclipse.org/legal/epl-v10.html
* *
* Contributors: * Contributors:
* Doug Schaefer (IBM) - Initial API and implementation * Doug Schaefer (IBM) - Initial API and implementation
* Markus Schorn (Wind River Systems) * Markus Schorn (Wind River Systems)
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.core.dom.ast; 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. * @noimplement This interface is not intended to be implemented by clients.
*/ */
public interface IASTDeclSpecifier extends IASTNode { public interface IASTDeclSpecifier extends IASTNode {
/** /**
* No storage class specified. * No storage class specified.
*/ */
@ -52,11 +51,13 @@ public interface IASTDeclSpecifier extends IASTNode {
/** /**
* @since 5.1 * @since 5.1
*/ */
@Override
public IASTDeclSpecifier copy(); public IASTDeclSpecifier copy();
/** /**
* @since 5.3 * @since 5.3
*/ */
@Override
public IASTDeclSpecifier copy(CopyStyle style); public IASTDeclSpecifier copy(CopyStyle style);
/** /**
@ -90,6 +91,4 @@ public interface IASTDeclSpecifier extends IASTNode {
*/ */
@Deprecated @Deprecated
public static final int sc_last = sc_register; public static final int sc_last = sc_register;
} }