Eclipse JDT
2.1

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

Packages that use Name
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 Name in org.eclipse.jdt.core.dom
 

Subclasses of Name in org.eclipse.jdt.core.dom
 class QualifiedName
          AST node for a qualified name.
 class SimpleName
          AST node for a simple name.
 

Methods in org.eclipse.jdt.core.dom that return Name
 Name QualifiedName.getQualifier()
          Returns the qualifier part of this qualified name.
 Name AST.newName(String[] identifiers)
          Creates and returns a new unparented name node for the given name segments.
 Name TypeDeclaration.getSuperclass()
          Returns the name of the superclass declared in this type declaration, or null if there is none.
 Name ThisExpression.getQualifier()
          Returns the qualifier of this "this" expression, or null if there is none.
 Name SimpleType.getName()
          Returns the name of this simple type.
 Name PackageDeclaration.getName()
          Returns the package name of this package declaration.
 Name SuperFieldAccess.getQualifier()
          Returns the qualifier of this "super" field access expression, or null if there is none.
 Name ImportDeclaration.getName()
          Returns the name imported by this declaration.
 Name ClassInstanceCreation.getName()
          Returns the name of the type instantiated in this class instance creation expression.
 Name SuperMethodInvocation.getQualifier()
          Returns the qualifier of this "super" method invocation expression, or null if there is none.
 

Methods in org.eclipse.jdt.core.dom with parameters of type Name
 void QualifiedName.setQualifier(Name qualifier)
          Sets the qualifier of this qualified name to the given name.
 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.
 SimpleType AST.newSimpleType(Name typeName)
          Creates and returns a new unparented simple type node with the given type name.
 void TypeDeclaration.setSuperclass(Name superclassName)
          Sets or clears the name of the superclass declared in this type declaration.
 void ThisExpression.setQualifier(Name name)
          Sets or clears the qualifier of this "this" expression.
 void SimpleType.setName(Name typeName)
          Sets the name of this simple type to the given name.
 void PackageDeclaration.setName(Name name)
          Sets the package name of this package declaration to the given name.
 void SuperFieldAccess.setQualifier(Name name)
          Sets or clears the qualifier of this "super" field access expression.
 void ImportDeclaration.setName(Name name)
          Sets the name of this import declaration to the given name.
 void ClassInstanceCreation.setName(Name name)
          Sets the name of the type instantiated in this class instance creation expression.
 void SuperMethodInvocation.setQualifier(Name name)
          Sets or clears the qualifier of this "super" method invocation expression.
 


Eclipse JDT
2.1

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