diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IEnumeration.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IEnumeration.java index d7acd764fd0..7e976248eb9 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IEnumeration.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IEnumeration.java @@ -16,9 +16,8 @@ package org.eclipse.cdt.core.dom.ast; * @noimplement This interface is not intended to be implemented by clients. */ public interface IEnumeration extends IBinding, IType { - /** - * returns an array of the IEnumerators declared in this enumeration + * Returns an array of the IEnumerators declared in this enumeration * @throws DOMException */ IEnumerator[] getEnumerators() throws DOMException; diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IEnumerator.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IEnumerator.java index 813d1146366..8260314fc80 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IEnumerator.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IEnumerator.java @@ -18,7 +18,7 @@ package org.eclipse.cdt.core.dom.ast; */ public interface IEnumerator extends IBinding { /** - * returns the type of this enumeration. The type of an enumerator + * Returns the type of this enumeration. The type of an enumerator * is the enumeration in which it is declared. * * @return the type of the enumeration diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IField.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IField.java index 57f36f9961b..9fef3eaf27b 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IField.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IField.java @@ -6,8 +6,8 @@ * http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * Doug Schaefer (IBM) - Initial API and implementation - * Markus Schorn (Wind River Systems) + * Doug Schaefer (IBM) - Initial API and implementation + * Markus Schorn (Wind River Systems) *******************************************************************************/ package org.eclipse.cdt.core.dom.ast; diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IFileNomination.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IFileNomination.java index 28a91aa36d4..3cdb410f719 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IFileNomination.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IFileNomination.java @@ -6,9 +6,8 @@ * http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * Markus Schorn - initial API and implementation + * Markus Schorn - initial API and implementation *******************************************************************************/ - package org.eclipse.cdt.core.dom.ast; import org.eclipse.cdt.core.index.IIndexFile; diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IFunctionType.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IFunctionType.java index b6e3c7c4152..5772caab0bc 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IFunctionType.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IFunctionType.java @@ -15,14 +15,13 @@ package org.eclipse.cdt.core.dom.ast; * @noimplement This interface is not intended to be implemented by clients. */ public interface IFunctionType extends IType { - /** - * get the return type of this function type + * Returns the return type of this function type */ public IType getReturnType(); /** - * get the adjusted parameter types + * Returns the adjusted parameter types * ISO C99 6.7.5.3, ISO C++98 8.3.4-3 */ public IType[] getParameterTypes(); diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IMacroBinding.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IMacroBinding.java index 8b524a1a793..b820b0b1ea6 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IMacroBinding.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IMacroBinding.java @@ -6,8 +6,8 @@ * http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * IBM - Initial API and implementation - * Markus Schorn (Wind River Systems) + * IBM - Initial API and implementation + * Markus Schorn (Wind River Systems) *******************************************************************************/ package org.eclipse.cdt.core.dom.ast; @@ -18,7 +18,6 @@ package org.eclipse.cdt.core.dom.ast; * @noimplement This interface is not intended to be implemented by clients. */ public interface IMacroBinding extends IBinding { - /** * Returns true if this is a function-style macro. * @since 5.0 diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IPointerType.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IPointerType.java index 9aff9d85908..8a1b49eaa6e 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IPointerType.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IPointerType.java @@ -17,7 +17,7 @@ package org.eclipse.cdt.core.dom.ast; */ public interface IPointerType extends IType { /** - * get the type that this is a pointer to + * Returns the type that this is a pointer to */ public IType getType(); @@ -37,5 +37,4 @@ public interface IPointerType extends IType { * @since 5.3 */ boolean isRestrict(); - } diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IProblemBinding.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IProblemBinding.java index 9be32955e9f..a18e169e89d 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IProblemBinding.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IProblemBinding.java @@ -1,11 +1,11 @@ /******************************************************************************* - * Copyright (c) 2004, 2010 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html + * Copyright (c) 2004, 2010 IBM Corporation and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html * - * Contributors: + * Contributors: * Andrew Niefer (IBM Corporation) - initial API and implementation * Markus Schorn (Wind River Systems) *******************************************************************************/ @@ -18,7 +18,6 @@ package org.eclipse.cdt.core.dom.ast; * @noextend This interface is not intended to be extended by clients. */ public interface IProblemBinding extends IBinding, IScope, IType, ISemanticProblem { - /** * Returns the AST node that this problem was created for */ diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IQualifierType.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IQualifierType.java index 63139dd769d..6535a0dbdc5 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IQualifierType.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IQualifierType.java @@ -29,7 +29,7 @@ public interface IQualifierType extends IType { public boolean isVolatile(); /** - * get the type that this is qualifying + * Returns the type that this is qualifying */ public IType getType(); } diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IScope.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IScope.java index e5910affecf..a713a581698 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IScope.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IScope.java @@ -6,9 +6,9 @@ * http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * IBM - Initial API and implementation - * Markus Schorn (Wind River Systems) - * Bryan Wilkinson (QNX) + * IBM - Initial API and implementation + * Markus Schorn (Wind River Systems) + * Bryan Wilkinson (QNX) *******************************************************************************/ package org.eclipse.cdt.core.dom.ast; @@ -24,7 +24,6 @@ import org.eclipse.cdt.core.index.IIndexFileSet; * @noimplement This interface is not intended to be implemented by clients. */ public interface IScope { - /** * Classifies the scope. * @since 5.1 @@ -32,13 +31,13 @@ public interface IScope { EScopeKind getKind(); /** - * Get the IName for this scope, may be null + * Returns the IName for this scope, may be null * @return The name of this scope. */ public IName getScopeName(); /** - * The method returns the first enclosing non-template scope, or null if this + * Returns the first enclosing non-template scope, or null if this * is the global scope. *

* For scopes obtained from an index, null is returned to indicate that the @@ -58,32 +57,32 @@ public interface IScope { public IBinding[] find(String name); /** - * Get the binding in this scope that the given name would resolve to. Could + * Returns the binding in this scope that the given name would resolve to. Could * return null if there is no matching binding in this scope, if the binding has not * yet been cached in this scope, or if resolve == false and the appropriate binding * has not yet been resolved. * * @param name - * @param resolve : + * @param resolve * whether or not to resolve the matching binding if it has not * been so already. - * @return : the binding in this scope that matches the name, or null + * @return the binding in this scope that matches the name, or null */ public IBinding getBinding(IASTName name, boolean resolve); /** - * Get the binding in this scope that the given name would resolve to. Could + * Returns the binding in this scope that the given name would resolve to. Could * return null if there is no matching binding in this scope, if the binding has not * yet been cached in this scope, or if resolve == false and the appropriate binding * has not yet been resolved. Accepts file local bindings from the index for the files - * int the given set, only. + * in the given set, only. * * @param name - * @param resolve : + * @param resolve * whether or not to resolve the matching binding if it has not * been so already. * @param acceptLocalBindings a set of files for which to accept local bindings. - * @return : the binding in this scope that matches the name, or null + * @return the binding in this scope that matches the name, or null */ public IBinding getBinding(IASTName name, boolean resolve, IIndexFileSet acceptLocalBindings); @@ -189,5 +188,4 @@ public interface IScope { * @since 5.5 */ public IBinding[] getBindings(ScopeLookupData lookup); - } diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/ISemanticProblem.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/ISemanticProblem.java index 6cfe21fea75..ec7d620f069 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/ISemanticProblem.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/ISemanticProblem.java @@ -6,7 +6,7 @@ * http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * Markus Schorn - initial API and implementation + * Markus Schorn - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.core.dom.ast;