Uses of Class
org.eclipse.jdt.core.dom.SimpleName
-
Packages that use SimpleName 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.org.eclipse.jdt.core.manipulation Application programming interface for the JDT core manipulation plug-in class. -
-
Uses of SimpleName in org.eclipse.jdt.core.dom
Methods in org.eclipse.jdt.core.dom that return SimpleName Modifier and Type Method Description SimpleNameBreakStatement. getLabel()Returns the label of this break statement, ornullif there is none.SimpleNameContinueStatement. getLabel()Returns the label of this continue statement, ornullif there is none.SimpleNameLabeledStatement. getLabel()Returns the label of this labeled statement.SimpleNameAbstractTypeDeclaration. getName()Returns the name of the type declared in this type declaration.SimpleNameAnnotationTypeMemberDeclaration. getName()Returns the name of the annotation type member declared in this declaration.SimpleNameEnumConstantDeclaration. getName()Returns the name of the constant declared in this enum declaration.SimpleNameExpressionMethodReference. getName()Returns the name of the method referenced in this expression.SimpleNameFieldAccess. getName()Returns the name of the field accessed in this field access expression.SimpleNameMemberRef. getName()Returns the name of the referenced member.SimpleNameMemberValuePair. getName()Returns the member name.SimpleNameMethodDeclaration. getName()Returns the name of the method declared in this method declaration.SimpleNameMethodInvocation. getName()Returns the name of the method invoked in this expression.SimpleNameMethodRef. getName()Returns the name of the referenced method or constructor.SimpleNameMethodRefParameter. getName()Returns the parameter name, ornullif there is none.SimpleNameNameQualifiedType. getName()Returns the name part of this name-qualified type.SimpleNameQualifiedName. getName()Returns the name part of this qualified name.SimpleNameQualifiedType. getName()Returns the name part of this qualified type.SimpleNameSuperFieldAccess. getName()Returns the name of the field accessed in this "super" field access expression.SimpleNameSuperMethodInvocation. getName()Returns the name of the method invoked in this expression.SimpleNameSuperMethodReference. getName()Returns the name of the method referenced in this expression.SimpleNameTypeMethodReference. getName()Returns the name of the method referenced in this expression.SimpleNameTypeParameter. getName()Returns the name of the type variable declared in this type parameter.SimpleNameVariableDeclaration. getName()Returns the name of the variable declared in this variable declaration.SimpleNameMethodDeclaration. getReceiverQualifier()Returns the qualifying name, if any, for the explicit receiver ornullif not used (added in JLS8 API).SimpleNameAST. newSimpleName(String identifier)Creates and returns a new unparented simple name node for the given identifier.Methods in org.eclipse.jdt.core.dom with parameters of type SimpleName Modifier and Type Method Description voidASTVisitor. endVisit(SimpleName node)End of visit the given type-specific AST node.booleanASTMatcher. match(SimpleName node, Object other)Returns whether the given node and the other object match.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.QualifiedTypeAST. newQualifiedType(Type qualifier, SimpleName name)Creates and returns a new unparented qualified type node with the given qualifier type and name.voidBreakStatement. setLabel(SimpleName label)Sets or clears the label of this break statement.voidContinueStatement. setLabel(SimpleName label)Sets or clears the label of this continue statement.voidLabeledStatement. setLabel(SimpleName label)Sets the label of this labeled statement.voidAbstractTypeDeclaration. setName(SimpleName typeName)Sets the name of the type declared in this type declaration to the given name.voidAnnotationTypeMemberDeclaration. setName(SimpleName memberName)Sets the name of the annotation type member declared in this declaration to the given name.voidEnumConstantDeclaration. setName(SimpleName constantName)Sets the name of the constant declared in this enum declaration to the given name.voidExpressionMethodReference. setName(SimpleName name)Sets the name of the method referenced in this expression to the given name.voidFieldAccess. setName(SimpleName fieldName)Sets the name of the field accessed in this field access expression.voidMemberRef. setName(SimpleName name)Sets the name of the referenced member to the given name.voidMemberValuePair. setName(SimpleName name)Sets the member name.voidMethodDeclaration. setName(SimpleName methodName)Sets the name of the method declared in this method declaration to the given name.voidMethodInvocation. setName(SimpleName name)Sets the name of the method invoked in this expression to the given name.voidMethodRef. setName(SimpleName name)Sets the name of the referenced method or constructor to the given name.voidMethodRefParameter. setName(SimpleName name)Sets or clears the parameter name.voidNameQualifiedType. setName(SimpleName name)Sets the name part of this name-qualified type to the given simple name.voidQualifiedName. setName(SimpleName name)Sets the name part of this qualified name to the given simple name.voidQualifiedType. setName(SimpleName name)Sets the name part of this qualified type to the given simple name.voidSuperFieldAccess. setName(SimpleName fieldName)Sets the name of the field accessed in this "super" field access expression.voidSuperMethodInvocation. setName(SimpleName name)Sets the name of the method invoked in this expression to the given name.voidSuperMethodReference. setName(SimpleName name)Sets the name of the method referenced in this expression to the given name.voidTypeMethodReference. setName(SimpleName name)Sets the name of the method referenced in this expression to the given name.voidTypeParameter. setName(SimpleName typeName)Sets the name of the type variable of this type parameter to the given name.voidVariableDeclaration. setName(SimpleName variableName)Sets the name of the variable declared in this variable declaration to the given name.voidMethodDeclaration. setReceiverQualifier(SimpleName receiverQualifier)Sets the given simple name as the qualifier for the receiver (added in JLS8 API).booleanASTVisitor. visit(SimpleName node)Visits the given type-specific AST node. -
Uses of SimpleName in org.eclipse.jdt.core.manipulation
Methods in org.eclipse.jdt.core.manipulation with parameters of type SimpleName Modifier and Type Method Description booleanImportReferencesCollector. visit(SimpleName node)Method parameters in org.eclipse.jdt.core.manipulation with type arguments of type SimpleName Modifier and Type Method Description static voidImportReferencesCollector. collect(ASTNode node, IJavaProject project, Region rangeLimit, boolean skipMethodBodies, Collection<SimpleName> resultingTypeImports, Collection<SimpleName> resultingStaticImports)Collect import statements from an AST node.static voidImportReferencesCollector. collect(ASTNode node, IJavaProject project, Region rangeLimit, Collection<SimpleName> resultingTypeImports, Collection<SimpleName> resultingStaticImports)Collect import statements from an AST node.
-