Uses of Class
jparse.expr.IdentifierAST

Packages that use IdentifierAST
jparse Provides the main classes that parse and evaluate Java programs. 
jparse.expr Provides classes that represent Java expressions. 
jparse.stmt Provides classes that represent Java statements. 
 

Uses of IdentifierAST in jparse
 

Fields in jparse declared as IdentifierAST
private  IdentifierAST MethAST.methodName
          The name of the method
private  IdentifierAST[] MethAST.exceptNames
          The names of the exception types thrown by this method
private  IdentifierAST[] ConstrAST.exceptNames
          The names of the exception types thrown by this constructor
 

Methods in jparse with parameters of type IdentifierAST
protected  void JavaParser.anonymousClassBlock(IdentifierAST superclass)
           
 

Constructors in jparse with parameters of type IdentifierAST
MethAST(ModifierAST mods, TypeAST retType, IdentifierAST name, JavaAST parameters, JavaAST brackets, JavaAST exceptions, CompoundAST block)
          Create a new method AST
 

Uses of IdentifierAST in jparse.expr
 

Subclasses of IdentifierAST in jparse.expr
 class ThisLiteralAST
          An AST node that represents the literal this
 class TypeAST
          An AST node that represents a type expression
 class VarAST
          An AST node that represents a variable definition or formal parameter
 

Fields in jparse.expr declared as IdentifierAST
private  IdentifierAST NewAST.typeName
          The type to instantiate
private  IdentifierAST MethodCallAST.method
          The name of the method to call
 

Methods in jparse.expr that return IdentifierAST
 IdentifierAST NewAST.getTypeName()
          Get the name of the type to instantiate
 IdentifierAST MethodCallAST.getMethodName()
          Get the name of the method to call
 

Methods in jparse.expr with parameters of type IdentifierAST
 int IdentifierAST.compareTo(IdentifierAST ident)
          Compares this identifier with another for order.
 

Uses of IdentifierAST in jparse.stmt
 

Fields in jparse.stmt declared as IdentifierAST
private  IdentifierAST ContinueAST.label
          The continue label
private  IdentifierAST BreakAST.label
          The break label
 

Methods in jparse.stmt that return IdentifierAST
 IdentifierAST ContinueAST.getLabel()
          Get the label at which control should continue
 IdentifierAST BreakAST.getLabel()
          Get the label to break to