Uses of Class
org.eclipse.jdt.core.dom.Name
-
Packages that use Name Package Description org.eclipse.jdt.core.dom The Java DOM/AST 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 Modifier and Type Class Description classQualifiedNameAST node for a qualified name.classSimpleNameAST node for a simple name.Fields in org.eclipse.jdt.core.dom declared as Name Modifier and Type Field Description protected NameModulePackageAccess. nameThe package name; lazily initialized; defaults to a unspecified, legal Java identifier.Methods in org.eclipse.jdt.core.dom that return Name Modifier and Type Method Description NameClassInstanceCreation. getName()Deprecated.In the JLS3 API, this method is replaced byClassInstanceCreation.getType(), which returns aTypeinstead of aName.NameImportDeclaration. getName()Returns the name imported by this declaration.NameModuleDeclaration. getName()Returns the name of this module declaration.NameModulePackageAccess. getName()Returns the name of the package.NamePackageDeclaration. getName()Returns the package name of this package declaration.NameProvidesDirective. getName()Returns the name of the service in this directive.NameRequiresDirective. getName()Returns the module name referenced by this declaration.NameSimpleType. getName()Returns the name of this simple type.NameUsesDirective. getName()Returns the name of the service in this directive.NameMemberRef. getQualifier()Returns the qualifier of this member reference, ornullif there is none.NameMethodRef. getQualifier()Returns the qualifier of this method reference, ornullif there is none.NameNameQualifiedType. getQualifier()Returns the qualifier of this name-qualified type.NameQualifiedName. getQualifier()Returns the qualifier part of this qualified name.NameSuperFieldAccess. getQualifier()Returns the qualifier of this "super" field access expression, ornullif there is none.NameSuperMethodInvocation. getQualifier()Returns the qualifier of this "super" method invocation expression, ornullif there is none.NameSuperMethodReference. getQualifier()Returns the qualifier of this "super" method reference, ornullif there is none.NameThisExpression. getQualifier()Returns the qualifier of this "this" expression, ornullif there is none.NameTypeDeclaration. getSuperclass()Deprecated.In the JLS3 API, this method is replaced byTypeDeclaration.getSuperclassType(), which returns aTypeinstead of aName.NameAnnotation. getTypeName()Returns the annotation type name of this annotation.NameAST. newName(String qualifiedName)Creates and returns a new unparented name node for the given name.NameAST. newName(String[] identifiers)Creates and returns a new unparented name node for the given name segments.Methods in org.eclipse.jdt.core.dom with parameters of type Name Modifier and Type Method Description NameQualifiedTypeAST. newNameQualifiedType(Name qualifier, SimpleName name)Creates and returns a new unparented name qualified type node with the given qualifier and name.QualifiedNameAST. newQualifiedName(Name qualifier, SimpleName name)Creates and returns a new unparented qualified name node for the given qualifier and simple name child node.SimpleTypeAST. newSimpleType(Name typeName)Creates and returns a new unparented simple type node with the given type name.voidClassInstanceCreation. setName(Name name)Deprecated.In the JLS3 API, this method is replaced byClassInstanceCreation.setType(Type), which expects aTypeinstead of aName.voidImportDeclaration. setName(Name name)Sets the name of this import declaration to the given name.voidModuleDeclaration. setName(Name name)Sets the module name in to the given name.voidModulePackageAccess. setName(Name name)Sets the name of the package to the given name.voidPackageDeclaration. setName(Name name)Sets the package name of this package declaration to the given name.voidProvidesDirective. setName(Name name)Sets the name of the service.voidRequiresDirective. setName(Name name)Sets the module name in requires directive to the given name.voidSimpleType. setName(Name typeName)Sets the name of this simple type to the given name.voidUsesDirective. setName(Name name)Sets the name of the service in this directive.voidMemberRef. setQualifier(Name name)Sets or clears the qualifier of this member reference.voidMethodRef. setQualifier(Name name)Sets or clears the qualifier of this method reference.voidNameQualifiedType. setQualifier(Name name)Sets the qualifier of this name-qualified type to the given name.voidQualifiedName. setQualifier(Name qualifier)Sets the qualifier of this qualified name to the given name.voidSuperFieldAccess. setQualifier(Name name)Sets or clears the qualifier of this "super" field access expression.voidSuperMethodInvocation. setQualifier(Name name)Sets or clears the qualifier of this "super" method invocation expression.voidSuperMethodReference. setQualifier(Name name)Sets the qualifier of this "super" method reference expression.voidThisExpression. setQualifier(Name name)Sets or clears the qualifier of this "this" expression.voidTypeDeclaration. setSuperclass(Name superclassName)Deprecated.In the JLS3 API, this method is replaced byTypeDeclaration.setSuperclassType(Type), which expects aTypeinstead of aName.voidAnnotation. setTypeName(Name typeName)Sets the annotation type name of this annotation.
-