Uses of Class
jparse.stmt.CompoundAST

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

Uses of CompoundAST in jparse
 

Fields in jparse declared as CompoundAST
private  CompoundAST MethAST.body
          The body of the method
private  CompoundAST ConstrAST.body
          The body of the constructor
 

Methods in jparse that return CompoundAST
 CompoundAST MethAST.getBody()
          Get the code for the body of this method
 CompoundAST ConstrAST.getBody()
          Get the code for the body of this constructor
 

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

Uses of CompoundAST in jparse.stmt
 

Fields in jparse.stmt declared as CompoundAST
private  CompoundAST TryAST.block
          The try block
private  CompoundAST TryAST.finallyClause
          The finally clause
private  CompoundAST SynchronizedAST.body
          The statement
private  CompoundAST CatchAST.body
          The catch body
 

Methods in jparse.stmt that return CompoundAST
 CompoundAST TryAST.getTryBlock()
          Get the try block
 CompoundAST TryAST.getFinallyClause()
          Get the finally clause for this try, if any
 CompoundAST CatchAST.getBody()
          Get the body of the catch clause