1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +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;
/**
* An implicit name is used to resolve uses of implicit bindings, such as overloaded operators.
*
@ -25,7 +24,6 @@ public interface IASTImplicitName extends IASTName {
public static final IASTImplicitName[] EMPTY_NAME_ARRAY = {};
/**
* {@inheritDoc}
* Redeclared with strengthened postcondition.
@ -35,7 +33,6 @@ public interface IASTImplicitName extends IASTName {
*/
public IBinding resolveBinding();
/**
* Returns true if this node is an alternate.
*
@ -47,14 +44,12 @@ public interface IASTImplicitName extends IASTName {
*/
public boolean isAlternate();
/**
* Convenience method that returns true if this
* name represents an overloaded operator.
*/
public boolean isOperator();
/**
* This method is not supported on implicit names.
*

View file

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