Uses of Class
openjava.ptree.ParameterList

Packages that use ParameterList
openjava.mop Provides classes that are fundamental to the design of the OpenJava Meta-Object Protocols (MOP).  
openjava.ptree   
openjava.ptree.util   
 

Uses of ParameterList in openjava.mop
 

Methods in openjava.mop that return ParameterList
static ParameterList Toolbox.generateParameters(OJClass[] parameterTypes)
           
static ParameterList Toolbox.generateParameters(OJClass[] parameterTypes, java.lang.String[] parameterNames)
           
 

Constructors in openjava.mop with parameters of type ParameterList
OJMethod(OJClass declarer, OJModifier modif, OJClass returnType, java.lang.String name, ParameterList params, OJClass[] exceptionTypes, StatementList body)
          Constructs a new OJMethod object.
OJConstructor(OJClass declarer, OJModifier modif, ParameterList params, OJClass[] exceptionTypes, ConstructorInvocation ci, StatementList body)
           
 

Uses of ParameterList in openjava.ptree
 

Methods in openjava.ptree that return ParameterList
 ParameterList ConstructorDeclaration.getParameters()
          Gets the parameter list.
 ParameterList MethodDeclaration.getParameters()
          Gets parameter list of this method.
 ParameterList ParameterList.subList(int from_index, int to_index)
          Returns a view of the portion of this List between fromIndex, inclusive, and toIndex, exclusive.
 

Methods in openjava.ptree with parameters of type ParameterList
 void ConstructorDeclaration.setParameters(ParameterList params)
          Sets the parameter list.
 void MethodDeclaration.setParameters(ParameterList params)
          Sets parameter list of this method.
 void ParameterList.addAll(ParameterList lst)
          Appends a list after this list.
 

Constructors in openjava.ptree with parameters of type ParameterList
ConstructorDeclaration(ModifierList modiflist, java.lang.String name, ParameterList params, TypeName[] throwlist, ConstructorInvocation scstmt, StatementList stmtlist)
          Constructs new ConstructorDeclaration from its elements.
ConstructorDeclaration(ModifierList modiflist, java.lang.String name, ParameterList params, TypeName[] throwlist, StatementList stmtlist)
          Constructs new ConstructorDeclaration from its elements.
MethodDeclaration(ModifierList modiflist, TypeName typespec, java.lang.String name, ParameterList params, TypeName[] throwlist, StatementList block)
          Constructs new MethodDeclaration from its elements.
 

Uses of ParameterList in openjava.ptree.util
 

Methods in openjava.ptree.util that return ParameterList
 ParameterList EvaluationShuttle.evaluateDown(ParameterList p)
           
 ParameterList EvaluationShuttle.evaluateUp(ParameterList p)
           
 

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