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

Cosmetics.

This commit is contained in:
Sergey Prigogin 2012-04-04 20:07:54 -07:00
parent 07561ca883
commit 1d9c709b88
2 changed files with 5 additions and 5 deletions

View file

@ -17,7 +17,7 @@ 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 IASTDeclaration extends IASTNode { public interface IASTDeclaration extends IASTNode {
public static final IASTDeclaration[] EMPTY_DECLARATION_ARRAY = new IASTDeclaration[0]; public static final IASTDeclaration[] EMPTY_DECLARATION_ARRAY = {};
/** /**
* @since 5.1 * @since 5.1

View file

@ -67,7 +67,7 @@ public interface IASTDeclarator extends IASTNode, IASTNameOwner {
public void addPointerOperator(IASTPointerOperator operator); public void addPointerOperator(IASTPointerOperator operator);
/** /**
* If the declarator is nested in parentheses, this returns the declarator * If the declarator is nested in parentheses, returns the declarator
* as found in those parentheses. * as found in those parentheses.
* *
* @return the nested declarator or null * @return the nested declarator or null
@ -77,7 +77,7 @@ public interface IASTDeclarator extends IASTNode, IASTNameOwner {
public void setNestedDeclarator(IASTDeclarator nested); public void setNestedDeclarator(IASTDeclarator nested);
/** /**
* This returns the name of the declarator. If this is an abstract * Returns the name of the declarator. If this is an abstract
* declarator, this will return an empty name. * declarator, this will return an empty name.
* *
* @return the name of the declarator * @return the name of the declarator
@ -85,7 +85,7 @@ public interface IASTDeclarator extends IASTNode, IASTNameOwner {
public IASTName getName(); public IASTName getName();
/** /**
* Set the name of he declarator. * Sets the name of he declarator.
* *
* @param name * @param name
* <code>IASTName</code> * <code>IASTName</code>
@ -93,7 +93,7 @@ public interface IASTDeclarator extends IASTNode, IASTNameOwner {
public void setName(IASTName name); public void setName(IASTName name);
/** /**
* This is the optional initializer for this declarator. * Returns the optional initializer for this declarator.
* *
* @return the initializer expression or null * @return the initializer expression or null
*/ */