Uses of Class
pt.compiler.parser.ast.expr.NameExpr

Packages that use NameExpr
pt.compiler.parser   
pt.compiler.parser.ast   
pt.compiler.parser.ast.body   
pt.compiler.parser.ast.expr   
pt.compiler.parser.ast.visitor   
 

Uses of NameExpr in pt.compiler.parser
 

Methods in pt.compiler.parser that return NameExpr
 NameExpr JavaParser.Name()
           
 

Uses of NameExpr in pt.compiler.parser.ast
 

Methods in pt.compiler.parser.ast that return NameExpr
 NameExpr PackageDeclaration.getName()
           
 NameExpr ImportDeclaration.getName()
           
 

Constructors in pt.compiler.parser.ast with parameters of type NameExpr
ImportDeclaration(int line, int column, NameExpr name, boolean isStatic, boolean isAsterisk)
           
PackageDeclaration(int line, int column, java.util.List<AnnotationExpr> annotations, NameExpr name)
           
 

Uses of NameExpr in pt.compiler.parser.ast.body
 

Methods in pt.compiler.parser.ast.body that return types with arguments of type NameExpr
 java.util.List<NameExpr> MethodDeclaration.getThrows()
           
 java.util.List<NameExpr> ConstructorDeclaration.getThrows()
           
 

Constructor parameters in pt.compiler.parser.ast.body with type arguments of type NameExpr
ConstructorDeclaration(int line, int column, JavadocComment javaDoc, int modifiers, java.util.List<AnnotationExpr> annotations, java.util.List<TypeParameter> typeParameters, java.lang.String name, java.util.List<Parameter> parameters, java.util.List<NameExpr> throws_, BlockStmt block)
           
MethodDeclaration(int line, int column, JavadocComment javaDoc, int modifiers, java.util.List<AnnotationExpr> annotations, java.util.List<TypeParameter> typeParameters, Type type, java.lang.String name, java.util.List<Parameter> parameters, int arrayCount, java.util.List<NameExpr> throws_, BlockStmt block)
           
 

Uses of NameExpr in pt.compiler.parser.ast.expr
 

Subclasses of NameExpr in pt.compiler.parser.ast.expr
 class QualifiedNameExpr
           
 

Methods in pt.compiler.parser.ast.expr that return NameExpr
 NameExpr SingleMemberAnnotationExpr.getName()
           
 NameExpr NormalAnnotationExpr.getName()
           
 NameExpr MarkerAnnotationExpr.getName()
           
 NameExpr QualifiedNameExpr.getQualifier()
           
 

Constructors in pt.compiler.parser.ast.expr with parameters of type NameExpr
MarkerAnnotationExpr(int line, int column, NameExpr name)
           
NormalAnnotationExpr(int line, int column, NameExpr name, java.util.List<MemberValuePair> pairs)
           
QualifiedNameExpr(int line, int column, NameExpr scope, java.lang.String name)
           
SingleMemberAnnotationExpr(int line, int column, NameExpr name, Expression memberValue)
           
 

Uses of NameExpr in pt.compiler.parser.ast.visitor
 

Methods in pt.compiler.parser.ast.visitor with parameters of type NameExpr
 void VoidVisitor.visit(NameExpr n, A arg)
           
 R GenericVisitor.visit(NameExpr n, A arg)
           
 void TaskVisitor.visit(NameExpr n, java.lang.Object arg)
           
 void DumpVisitor.visit(NameExpr n, java.lang.Object arg)