Uses of Class
openjava.ptree.MemberDeclarationList

Packages that use MemberDeclarationList
openjava.ptree   
openjava.ptree.util   
 

Uses of MemberDeclarationList in openjava.ptree
 

Methods in openjava.ptree that return MemberDeclarationList
 MemberDeclarationList MemberDeclarationList.subList(int from_index, int to_index)
          Returns a view of the portion of this List between fromIndex, inclusive, and toIndex, exclusive.
 MemberDeclarationList AllocationExpression.getClassBody()
          Gets the class body of this constructor.
 MemberDeclarationList ClassDeclaration.getBody()
          Gets class body
 

Methods in openjava.ptree with parameters of type MemberDeclarationList
 void MemberDeclarationList.addAll(MemberDeclarationList lst)
          Appends a list after this list.
 void AllocationExpression.setClassBody(MemberDeclarationList mdlist)
          Sets the class body of this constructor.
 void ClassDeclaration.setBody(MemberDeclarationList mdlist)
          Sets class body
 

Constructors in openjava.ptree with parameters of type MemberDeclarationList
AllocationExpression(Expression encloser, TypeName typename, ExpressionList args, MemberDeclarationList mdlst)
          Allocates a new object with the class body.
AllocationExpression(TypeName typename, ExpressionList args, MemberDeclarationList mdlst)
          Allocates a new object with the class body.
ClassDeclaration(ModifierList modiflist, java.lang.String name, TypeName[] baseclasses, TypeName[] ifaces, MemberDeclarationList fieldlist)
          Constructs ClassDeclaration from its elements.
ClassDeclaration(ModifierList modiflist, java.lang.String name, TypeName[] baseclasses, TypeName[] ifaces, MemberDeclarationList fieldlist, boolean is_class)
           
 

Uses of MemberDeclarationList in openjava.ptree.util
 

Methods in openjava.ptree.util that return MemberDeclarationList
 MemberDeclarationList EvaluationShuttle.evaluateDown(MemberDeclarationList p)
           
 MemberDeclarationList EvaluationShuttle.evaluateUp(MemberDeclarationList p)
           
static MemberDeclarationList PartialParser.makeMemberDeclarationList(java.lang.String str)
          NOT IMPLEMENTED Makes a ptree node from the string like :
"int f(){ return 1; }" + "public String str;"
 

Methods in openjava.ptree.util with parameters of type MemberDeclarationList
abstract  void ParseTreeVisitor.visit(MemberDeclarationList p)
           
 MemberDeclarationList EvaluationShuttle.evaluateDown(MemberDeclarationList p)
           
 MemberDeclarationList EvaluationShuttle.evaluateUp(MemberDeclarationList p)
           
 void EvaluationShuttle.visit(MemberDeclarationList p)
           
 void SourceCodeWriter.visit(MemberDeclarationList p)