diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTFieldReference.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTFieldReference.java index 36d43ae27e6..4ece8ac9a10 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTFieldReference.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTFieldReference.java @@ -6,20 +6,19 @@ * http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * Doug Schaefer (IBM) - Initial API and implementation + * Doug Schaefer (IBM) - Initial API and implementation *******************************************************************************/ package org.eclipse.cdt.core.dom.ast; /** - * This interface represents expressions that access a field reference. e.g. a.b => - * a is the expression, b is the field name. e.g. a()->def => a() is the + * This interface represents expressions that access a field reference. e.g. a.b => a + * is the expression, b is the field name. e.g. a()->def => a() is the * expression, def is the field name. * * @noextend This interface is not intended to be extended by clients. * @noimplement This interface is not intended to be implemented by clients. */ public interface IASTFieldReference extends IASTExpression, IASTNameOwner { - /** * FIELD_OWNER represents the relationship between a * IASTFieldReference and its IASTExpression @@ -37,46 +36,44 @@ public interface IASTFieldReference extends IASTExpression, IASTNameOwner { "IASTFieldReference.FIELD_NAME - IASTName for IASTFieldReference"); //$NON-NLS-1$ /** - * This returns an expression for the object containing the field. + * Returns an expression for the object containing the field. * * @return the field owner */ public IASTExpression getFieldOwner(); /** - * Set the expression for the object containing the field. + * Sets the expression for the object containing the field. * * @param expression */ public void setFieldOwner(IASTExpression expression); /** - * This returns the name of the field being dereferenced. + * Returns the name of the field being dereferenced. * * @return the name of the field (IASTName) */ public IASTName getFieldName(); /** - * Set the name of the field. + * Sets the name of the field. * - * @param name - * IASTName + * @param name the new name */ public void setFieldName(IASTName name); /** - * This returns true of this is the arrow operator and not the dot operator. + * Returns true of this is the arrow operator and not the dot operator. * * @return is this a pointer dereference */ public boolean isPointerDereference(); /** - * Set whether or not this is a pointer dereference (default == no). + * Sets whether or not this is a pointer dereference (default == no). * - * @param value - * boolean + * @param value the new value */ public void setIsPointerDereference(boolean value); @@ -91,5 +88,4 @@ public interface IASTFieldReference extends IASTExpression, IASTNameOwner { */ @Override public IASTFieldReference copy(CopyStyle style); - } diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPFunctionType.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPFunctionType.java index f4d01264e3d..8bb23b2cbb2 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPFunctionType.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPFunctionType.java @@ -20,7 +20,6 @@ import org.eclipse.cdt.core.dom.ast.IPointerType; * @noimplement This interface is not intended to be implemented by clients. */ public interface ICPPFunctionType extends IFunctionType { - /** * Returns true for a constant method */ @@ -37,7 +36,6 @@ public interface ICPPFunctionType extends IFunctionType { */ public boolean takesVarArgs(); - /** * @deprecated function types don't relate to this pointers at all. * @noreference This method is not intended to be referenced by clients and should be removed.