Eclipse JDT
2.1

Uses of Class
org.eclipse.jdt.core.dom.SimpleName

Packages that use SimpleName
org.eclipse.jdt.core.dom The Java DOM is the set of classes that model the source code of a Java program as a structured document. 
 

Uses of SimpleName in org.eclipse.jdt.core.dom
 

Methods in org.eclipse.jdt.core.dom that return SimpleName
 SimpleName QualifiedName.getName()
          Returns the name part of this qualified name.
abstract  SimpleName VariableDeclaration.getName()
          Returns the name of the variable declared in this variable declaration.
 SimpleName FieldAccess.getName()
          Returns the name of the field accessed in this field access expression.
 SimpleName AST.newSimpleName(String identifier)
          Creates and returns a new unparented simple name node for the given identifier.
 SimpleName LabeledStatement.getLabel()
          Returns the label of this labeled statement.
 SimpleName MethodInvocation.getName()
          Returns the name of the method invoked in this expression.
 SimpleName TypeDeclaration.getName()
          Returns the name of the type declared in this type declaration.
 SimpleName MethodDeclaration.getName()
          Returns the name of the method declared in this method declaration.
 SimpleName SuperFieldAccess.getName()
          Returns the name of the field accessed in this "super" field access expression.
 SimpleName BreakStatement.getLabel()
          Returns the label of this break statement, or null if there is none.
 SimpleName SingleVariableDeclaration.getName()
           
 SimpleName VariableDeclarationFragment.getName()
           
 SimpleName SuperMethodInvocation.getName()
          Returns the name of the method invoked in this expression.
 SimpleName ContinueStatement.getLabel()
          Returns the label of this continue statement, or null if there is none.
 

Methods in org.eclipse.jdt.core.dom with parameters of type SimpleName
 boolean ASTMatcher.match(SimpleName node, Object other)
          Returns whether the given node and the other object match.
 void QualifiedName.setName(SimpleName name)
          Sets the name part of this qualified name to the given simple name.
abstract  void VariableDeclaration.setName(SimpleName variableName)
          Sets the name of the variable declared in this variable declaration to the given name.
 void FieldAccess.setName(SimpleName fieldName)
          Sets the name of the field accessed in this field access expression.
 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.
 void LabeledStatement.setLabel(SimpleName label)
          Sets the label of this labeled statement.
 void MethodInvocation.setName(SimpleName name)
          Sets the name of the method invoked in this expression to the given name.
 void TypeDeclaration.setName(SimpleName typeName)
          Sets the name of the type declared in this type declaration to the given name.
 void MethodDeclaration.setName(SimpleName methodName)
          Sets the name of the method declared in this method declaration to the given name.
 void SuperFieldAccess.setName(SimpleName fieldName)
          Sets the name of the field accessed in this "super" field access expression.
 boolean ASTVisitor.visit(SimpleName node)
           
 void ASTVisitor.endVisit(SimpleName node)
           
 void BreakStatement.setLabel(SimpleName label)
          Sets or clears the label of this break statement.
 void SingleVariableDeclaration.setName(SimpleName variableName)
           
 void VariableDeclarationFragment.setName(SimpleName variableName)
           
 void SuperMethodInvocation.setName(SimpleName name)
          Sets the name of the method invoked in this expression to the given name.
 void ContinueStatement.setLabel(SimpleName label)
          Sets or clears the label of this continue statement.
 


Eclipse JDT
2.1

Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.