1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 03:53:21 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2012-02-08 19:59:04 -08:00
parent 61e9d699ba
commit 947882ff2f
4 changed files with 6 additions and 12 deletions

View file

@ -14,10 +14,8 @@ package org.eclipse.cdt.core.dom.ast;
/**
* @author Emanuel Graf IFS
* @since 5.3
*
*/
public interface IASTCopyLocation extends IASTNodeLocation {
public IASTNode getOriginalNode();
}

View file

@ -17,7 +17,6 @@ package org.eclipse.cdt.core.dom.ast;
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IASTFileLocation extends IASTNodeLocation {
/**
* The name of the file.
*

View file

@ -16,10 +16,8 @@ package org.eclipse.cdt.core.dom.ast;
*/
@Deprecated
public interface IASTMacroExpansion extends IASTNodeLocation {
/**
* The macro definition used for the expansion
*
*/
public IASTPreprocessorMacroDefinition getMacroDefinition();

View file

@ -18,7 +18,6 @@ package org.eclipse.cdt.core.dom.ast;
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IASTMacroExpansionLocation extends IASTNodeLocation {
/**
* Returns the expansion node enclosing this location. This will be the outermost
* macro expansion that can actually be found in the code.