1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-05 14:43:36 +02:00

Whitespace.

This commit is contained in:
Sergey Prigogin 2010-03-29 00:39:45 +00:00
parent 4e6488620b
commit 5d4ffbfa4b
2 changed files with 6 additions and 14 deletions

View file

@ -10,7 +10,6 @@
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.core.dom.ast; package org.eclipse.cdt.core.dom.ast;
/** /**
* An implicit name is used to resolve uses of implicit bindings, such as overloaded operators. * An implicit name is used to resolve uses of implicit bindings, such as overloaded operators.
* *
@ -24,8 +23,7 @@ package org.eclipse.cdt.core.dom.ast;
public interface IASTImplicitName extends IASTName { public interface IASTImplicitName extends IASTName {
public static final IASTImplicitName[] EMPTY_NAME_ARRAY = {}; public static final IASTImplicitName[] EMPTY_NAME_ARRAY = {};
/** /**
* {@inheritDoc} * {@inheritDoc}
* Redeclared with strengthened postcondition. * Redeclared with strengthened postcondition.
@ -34,8 +32,7 @@ public interface IASTImplicitName extends IASTName {
* Implicit names are not generated unless they resolve to something. * Implicit names are not generated unless they resolve to something.
*/ */
public IBinding resolveBinding(); public IBinding resolveBinding();
/** /**
* Returns true if this node is an alternate. * Returns true if this node is an alternate.
* *
@ -46,15 +43,13 @@ public interface IASTImplicitName extends IASTName {
* @see ASTVisitor#shouldVisitImplicitNameAlternates * @see ASTVisitor#shouldVisitImplicitNameAlternates
*/ */
public boolean isAlternate(); public boolean isAlternate();
/** /**
* Convenience method that returns true if this * Convenience method that returns true if this
* name represents an overloaded operator. * name represents an overloaded operator.
*/ */
public boolean isOperator(); public boolean isOperator();
/** /**
* This method is not supported on implicit names. * This method is not supported on implicit names.
* *

View file

@ -10,7 +10,6 @@
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.core.dom.ast; package org.eclipse.cdt.core.dom.ast;
/** /**
* An implicit name generated on demand. * An implicit name generated on demand.
* @since 5.1 * @since 5.1
@ -20,9 +19,7 @@ package org.eclipse.cdt.core.dom.ast;
public interface IASTImplicitNameOwner extends IASTNode { public interface IASTImplicitNameOwner extends IASTNode {
public static final ASTNodeProperty IMPLICIT_NAME = public static final ASTNodeProperty IMPLICIT_NAME =
new ASTNodeProperty("ICPPASTImplicitNameOwner.IMPLICIT_NAME"); //$NON-NLS-1$ new ASTNodeProperty("ICPPASTImplicitNameOwner.IMPLICIT_NAME"); //$NON-NLS-1$
public IASTImplicitName[] getImplicitNames(); public IASTImplicitName[] getImplicitNames();
} }