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

Cosmetics.

This commit is contained in:
Sergey Prigogin 2013-05-05 18:54:20 -07:00
parent 5c400704fb
commit 933e401ef3

View file

@ -6,7 +6,7 @@
* http://www.eclipse.org/legal/epl-v10.html * http://www.eclipse.org/legal/epl-v10.html
* *
* Contributors: * Contributors:
* John Camelon (IBM Rational Software) - Initial API and implementation * John Camelon (IBM Rational Software) - Initial API and implementation
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.core.dom.ast.c; package org.eclipse.cdt.core.dom.ast.c;
@ -14,13 +14,12 @@ import org.eclipse.cdt.core.dom.ast.ASTNodeProperty;
import org.eclipse.cdt.core.dom.ast.IASTName; import org.eclipse.cdt.core.dom.ast.IASTName;
/** /**
* Specific Designator that represents a field reference. * Specific designator that represents a field reference.
* *
* @noextend This interface is not intended to be extended by clients. * @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
*/ */
public interface ICASTFieldDesignator extends ICASTDesignator { public interface ICASTFieldDesignator extends ICASTDesignator {
/** /**
* <code>FIELD_NAME</code> represent the relationship between an * <code>FIELD_NAME</code> represent the relationship between an
* <code>ICASTFieldDesignator</code> and an <code>IASTName</code>. * <code>ICASTFieldDesignator</code> and an <code>IASTName</code>.
@ -29,17 +28,16 @@ public interface ICASTFieldDesignator extends ICASTDesignator {
"ICASTFieldDesignator.FIELD_NAME - ICASTFieldDesignator Field Name"); //$NON-NLS-1$ "ICASTFieldDesignator.FIELD_NAME - ICASTFieldDesignator Field Name"); //$NON-NLS-1$
/** /**
* Get the field name. * Returns the field name.
* *
* @return <code>IASTName</code> * @return <code>IASTName</code>
*/ */
public IASTName getName(); public IASTName getName();
/** /**
* Set the field name. * Sets the field name.
* *
* @param name * @param name <code>IASTName</code>
* <code>IASTName</code>
*/ */
public void setName(IASTName name); public void setName(IASTName name);