1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Comment adjustments.

This commit is contained in:
Sergey Prigogin 2012-11-25 16:38:39 -08:00
parent fc2cb1aaed
commit 236c894f33
2 changed files with 7 additions and 8 deletions

View file

@ -17,7 +17,7 @@ import org.eclipse.cdt.core.dom.ast.IASTName;
import org.eclipse.cdt.core.dom.ast.IASTNameOwner; import org.eclipse.cdt.core.dom.ast.IASTNameOwner;
/** /**
* This interface represents a C++ alias declaration. * Represents a C++ alias declaration.
* e.g. struct Type {}; using Alias = Type; * e.g. struct Type {}; using Alias = Type;
* *
* Experimental API. May change without notice. * Experimental API. May change without notice.
@ -28,8 +28,7 @@ public interface ICPPASTAliasDeclaration extends IASTDeclaration, IASTNameOwner
public static final ICPPASTAliasDeclaration[] EMPTY_ALIAS_DECLARATION_ARRAY = {}; public static final ICPPASTAliasDeclaration[] EMPTY_ALIAS_DECLARATION_ARRAY = {};
/** /**
* <code>ALIAS_NAME</code> is the name that is brought into local * <code>ALIAS_NAME</code> is the name that is brought into the local scope.
* scope.
*/ */
public static final ASTNodeProperty ALIAS_NAME = new ASTNodeProperty( public static final ASTNodeProperty ALIAS_NAME = new ASTNodeProperty(
"ICPPASTAliasDeclaration.ALIAS_NAME - Introduced alias name"); //$NON-NLS-1$ "ICPPASTAliasDeclaration.ALIAS_NAME - Introduced alias name"); //$NON-NLS-1$
@ -42,28 +41,28 @@ public interface ICPPASTAliasDeclaration extends IASTDeclaration, IASTNameOwner
"ICPPASTAliasDeclaration.TARGET_TYPEID - Pre-existing type ID the new symbol aliases"); //$NON-NLS-1$ "ICPPASTAliasDeclaration.TARGET_TYPEID - Pre-existing type ID the new symbol aliases"); //$NON-NLS-1$
/** /**
* Get the alias name. * Returns the alias name.
* *
* @return <code>IASTName</code> * @return <code>IASTName</code>
*/ */
public IASTName getAlias(); public IASTName getAlias();
/** /**
* Set the alias name. * Sets the alias name.
* *
* @param aliasName <code>IASTName</code> * @param aliasName <code>IASTName</code>
*/ */
public void setAlias(IASTName aliasName); public void setAlias(IASTName aliasName);
/** /**
* Get the mapping type id. * Returns the mapping type id.
* *
* @return <code>ICPPASTTypeId</code> * @return <code>ICPPASTTypeId</code>
*/ */
public ICPPASTTypeId getMappingTypeId(); public ICPPASTTypeId getMappingTypeId();
/** /**
* Set the mapping type id. * Sets the mapping type id.
* *
* @param mappingTypeId <code>ICPPASTTypeId</code> * @param mappingTypeId <code>ICPPASTTypeId</code>
*/ */

View file

@ -21,7 +21,7 @@ import org.eclipse.cdt.core.dom.ast.ITypedef;
*/ */
public interface ICPPAliasTemplateInstance extends ITypedef, ICPPBinding { public interface ICPPAliasTemplateInstance extends ITypedef, ICPPBinding {
/** /**
* Returns the the alias template specialized by this instance. * Returns the alias template specialized by this instance.
*/ */
public ICPPAliasTemplate getTemplateDefinition(); public ICPPAliasTemplate getTemplateDefinition();
} }