Uses of Class
openjava.ptree.ExpressionList

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

Uses of ExpressionList in openjava.mop
 

Methods in openjava.mop that return ExpressionList
 ExpressionList OJMethod.getParameterVariables()
           
 ExpressionList OJConstructor.getParameterVariables()
           
 

Uses of ExpressionList in openjava.ptree
 

Methods in openjava.ptree that return ExpressionList
 ExpressionList ArrayAllocationExpression.getDimExprList()
          Gets the dimexpr list of the array.
 ExpressionList ForStatement.getInit()
          Gets the initialization part of this for-statement.
 ExpressionList ForStatement.getIncrement()
          Gets the increments part of this for-statement.
 ExpressionList MethodCall.getArguments()
          Gets the arguments for this method.
 ExpressionList AllocationExpression.getArguments()
          Gets the arguments of this constructor.
 ExpressionList ExpressionList.subList(int from_index, int to_index)
          Returns a view of the portion of this List between fromIndex, inclusive, and toIndex, exclusive.
 ExpressionList CaseGroup.getLabels()
           
 ExpressionList ConstructorInvocation.getArguments()
          Gets the expressions as arguments for this invocation.
 

Methods in openjava.ptree with parameters of type ExpressionList
 void ArrayAllocationExpression.setDimExprList(ExpressionList dimlist)
          Sets the dimexpr list of the array.
 void ForStatement.setInit(ExpressionList init)
          Sets the initialization part of this for-statement.
 void ForStatement.setIncrement(ExpressionList incs)
          Sets the increments part of this for-statement.
 void MethodCall.setArguments(ExpressionList exprs)
          Sets the arguments for this method.
 void AllocationExpression.setArguments(ExpressionList args)
          Sets the arguments of this constructor.
 void ExpressionList.addAll(ExpressionList lst)
          Appends a list after this list.
 

Constructors in openjava.ptree with parameters of type ExpressionList
ArrayAllocationExpression(TypeName typename, ExpressionList dimlist)
          Allocates a new ptree object.
ArrayAllocationExpression(TypeName typename, ExpressionList dimlist, ArrayInitializer ainit)
          Allocates a new ptree object.
ArrayAllocationExpression(OJClass type, ExpressionList args)
           
ArrayAllocationExpression(OJClass type, ExpressionList args, ArrayInitializer ainit)
           
ForStatement(ExpressionList init, Expression expr, ExpressionList iterator, StatementList stmts)
          Allocates a new ForStatement object.
ForStatement(TypeName tspec, VariableDeclarator[] vdecls, Expression expr, ExpressionList iterator, StatementList stmts)
           
MethodCall(Expression expr, java.lang.String name, ExpressionList args)
          Allocates a new method call expression object.
MethodCall(java.lang.String name, ExpressionList args)
          Allocates a new method call expression for 'this'.
MethodCall(TypeName type, java.lang.String name, ExpressionList args)
          Allocates a new method call expression object.
MethodCall(OJClass clazz, java.lang.String name, ExpressionList args)
           
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.
AllocationExpression(Expression encloser, TypeName typename, ExpressionList args)
          Allocates a new object with the class body.
AllocationExpression(TypeName ctype, ExpressionList args)
          Allocates a new object without class body.
AllocationExpression(OJClass type, ExpressionList args)
           
CaseGroup(ExpressionList cll, StatementList bsl)
           
ArrayInitializer(ExpressionList exprs)
           
ConstructorInvocation(ExpressionList exprs)
          Constructs a new constructor invocation. i.e.
ConstructorInvocation(ExpressionList exprs, Expression enclosing)
          Constructs a new constructor invocation. i.e.
 

Uses of ExpressionList in openjava.ptree.util
 

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

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