mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-09 19:43:27 +02:00
Cosmetics.
This commit is contained in:
parent
e9ae9bf1cf
commit
39acee2d98
1 changed files with 13 additions and 15 deletions
|
@ -25,14 +25,14 @@ import org.eclipse.cdt.core.dom.ast.IASTNameOwner;
|
|||
* @noimplement This interface is not intended to be implemented by clients.
|
||||
*/
|
||||
public interface ICPPASTAliasDeclaration extends IASTDeclaration, IASTNameOwner {
|
||||
public static final ICPPASTAliasDeclaration[] EMPTY_USINGDIRECTIVE_ARRAY = new ICPPASTAliasDeclaration[0];
|
||||
public static final ICPPASTAliasDeclaration[] EMPTY_USINGDIRECTIVE_ARRAY = {};
|
||||
|
||||
/**
|
||||
* <code>ALIAS_NAME</code> is the name that is brought into local
|
||||
* scope.
|
||||
*/
|
||||
public static final ASTNodeProperty ALIAS_NAME = new ASTNodeProperty(
|
||||
"ICPPASTAliasDeclaration.ALIAS_NAME - New alias name introduced"); //$NON-NLS-1$
|
||||
"ICPPASTAliasDeclaration.ALIAS_NAME - Introduced alias name"); //$NON-NLS-1$
|
||||
|
||||
/**
|
||||
* <code>MAPPING_TYPE<ID/code> represents the pre-existing type id which
|
||||
|
@ -51,8 +51,7 @@ public interface ICPPASTAliasDeclaration extends IASTDeclaration, IASTNameOwner
|
|||
/**
|
||||
* Set the alias name.
|
||||
*
|
||||
* @param aliasName
|
||||
* <code>IASTName</code>
|
||||
* @param aliasName <code>IASTName</code>
|
||||
*/
|
||||
public void setAlias(IASTName aliasName);
|
||||
|
||||
|
@ -66,8 +65,7 @@ public interface ICPPASTAliasDeclaration extends IASTDeclaration, IASTNameOwner
|
|||
/**
|
||||
* Set the mapping type id.
|
||||
*
|
||||
* @param mappingTypeId
|
||||
* <code>ICPPASTTypeId</code>
|
||||
* @param mappingTypeId <code>ICPPASTTypeId</code>
|
||||
*/
|
||||
public void setMappingTypeId(ICPPASTTypeId mappingTypeId);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue