Package | Description |
---|---|
org.eclipse.wst.jsdt.core.dom |
Modifier and Type | Method and Description |
---|---|
SimpleName |
ModuleSpecifier.getDiscoverableName()
Returns this node's discoverable name
|
SimpleName |
LabeledStatement.getLabel()
Returns the label of this labeled statement.
|
SimpleName |
ContinueStatement.getLabel()
Returns the label of this continue statement, or
null if
there is none. |
SimpleName |
BreakStatement.getLabel()
Returns the label of this break statement, or
null if
there is none. |
SimpleName |
ModuleSpecifier.getLocal()
Returns this node's local name
|
SimpleName |
AbstractTypeDeclaration.getName()
Returns the name of the type declared in this type declaration.
|
SimpleName |
FieldAccess.getName()
Returns the name of the field accessed in this field access expression.
|
SimpleName |
MemberRef.getName()
Returns the name of the referenced member.
|
SimpleName |
FunctionRef.getName()
Returns the name of the referenced method or constructor.
|
SimpleName |
QualifiedType.getName()
Returns the name part of this qualified type.
|
SimpleName |
SingleVariableDeclaration.getName() |
SimpleName |
QualifiedName.getName()
Returns the name part of this qualified name.
|
SimpleName |
FunctionInvocation.getName()
Returns the name of the method invoked in this expression.
|
SimpleName |
SuperFieldAccess.getName()
Returns the name of the field accessed in this "super" field access
expression.
|
SimpleName |
FunctionDeclaration.getName()
Deprecated.
|
abstract SimpleName |
VariableDeclaration.getName()
Returns the name of the variable declared in this variable declaration.
|
SimpleName |
SuperMethodInvocation.getName()
Returns the name of the method invoked in this expression.
|
SimpleName |
FunctionRefParameter.getName()
Returns the parameter name, or
null if there is none. |
SimpleName |
VariableDeclarationFragment.getName() |
SimpleName |
AST.newSimpleName(java.lang.String identifier)
Creates and returns a new unparented simple name node for the given
identifier.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultASTVisitor.endVisit(SimpleName node) |
void |
ASTVisitor.endVisit(SimpleName node)
End of visit the given type-specific AST node.
|
boolean |
ASTMatcher.match(SimpleName node,
java.lang.Object other)
Returns whether the given node and the other object match.
|
QualifiedName |
AST.newQualifiedName(Name qualifier,
SimpleName name)
Creates and returns a new unparented qualified name node for the given
qualifier and simple name child node.
|
QualifiedType |
AST.newQualifiedType(Type qualifier,
SimpleName name)
Creates and returns a new unparented qualified type node with
the given qualifier type and name.
|
void |
ModuleSpecifier.setDiscoverableName(SimpleName name)
Sets the discoverable name of this node
|
void |
LabeledStatement.setLabel(SimpleName label)
Sets the label of this labeled statement.
|
void |
ContinueStatement.setLabel(SimpleName label)
Sets or clears the label of this continue statement.
|
void |
BreakStatement.setLabel(SimpleName label)
Sets or clears the label of this break statement.
|
void |
ModuleSpecifier.setLocal(SimpleName local)
Sets the local name of this node to the given value.
|
void |
AbstractTypeDeclaration.setName(SimpleName typeName)
Sets the name of the type declared in this type declaration to the
given name.
|
void |
FieldAccess.setName(SimpleName fieldName)
Sets the name of the field accessed in this field access expression.
|
void |
MemberRef.setName(SimpleName name)
Sets the name of the referenced member to the given name.
|
void |
FunctionRef.setName(SimpleName name)
Sets the name of the referenced method or constructor to the
given name.
|
void |
QualifiedType.setName(SimpleName name)
Sets the name part of this qualified type to the given simple name.
|
void |
SingleVariableDeclaration.setName(SimpleName variableName) |
void |
QualifiedName.setName(SimpleName name)
Sets the name part of this qualified name to the given simple name.
|
void |
FunctionInvocation.setName(SimpleName name)
Sets the name of the method invoked in this expression to the
given name.
|
void |
SuperFieldAccess.setName(SimpleName fieldName)
Sets the name of the field accessed in this "super" field access
expression.
|
void |
FunctionDeclaration.setName(SimpleName methodName)
Deprecated.
|
abstract void |
VariableDeclaration.setName(SimpleName variableName)
Sets the name of the variable declared in this variable declaration
to the given name.
|
void |
SuperMethodInvocation.setName(SimpleName name)
Sets the name of the method invoked in this expression to the
given name.
|
void |
FunctionRefParameter.setName(SimpleName name)
Sets or clears the parameter name.
|
void |
VariableDeclarationFragment.setName(SimpleName variableName) |
boolean |
DefaultASTVisitor.visit(SimpleName node) |
boolean |
ASTVisitor.visit(SimpleName node)
Visits the given type-specific AST node.
|
Copyright (c) IBM Corp. and others 2000, 2010. All Rights Reserved.