Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.tripi.asp.VarListNode

Uses of VarListNode in com.tripi.asp
 

Fields in com.tripi.asp declared as VarListNode
(package private)  VarListNode SubDefinitionNode.identlist
          Parameter list to the function
(package private)  VarListNode SelectNode.statements
           
(package private)  VarListNode RedimNode.dimensions
          List of new dimensions
(package private)  VarListNode GetIndexNode.expr
          Parameters to field expression
(package private)  VarListNode FunctionCallNode.expr
          Parameters to this function
(package private)  VarListNode DefineIdentArrayNode.dimensions
          List of dimension sizes
(package private)  VarListNode CaseNode.tests
          List of tests for this case
 

Methods in com.tripi.asp that return VarListNode
 VarListNode SubDefinitionNode.getIdentList()
          Get the list of parameters for this subroutine.
 VarListNode RedimNode.getDimensionList()
          Get the dimension list.
 VarListNode GetIndexNode.getExpression()
          Get the parameters.
 VarListNode FunctionCallNode.getExpression()
          Obtains the expression of this function call node.
 VarListNode DefineIdentArrayNode.getDimensionList()
          Get the list of dimensions this define array is defining
 

Methods in com.tripi.asp with parameters of type VarListNode
 void VarListNode.appendAll(VarListNode v)
          Adds all of the elements in another varlistnode to this varlistnode.
 java.lang.Object SubDefinitionNode.execute(VarListNode param, AspContext scope)
          This function executes the subroutine/function itself.
 java.lang.Object PackedCharArrayNode.getIndex(VarListNode varlist, AspContext context)
          MapNode function to obtain the value of this array at an index.
 java.lang.Object PackedByteArrayNode.getIndex(VarListNode varlist, AspContext context)
          MapNode function to obtain the value of this array at an index.
 java.lang.Object MapNode.getIndex(VarListNode varlist, AspContext context)
          Obtains the value of this map node at the specified index.
 java.lang.Object JavaObjectNode.getIndex(VarListNode varlist, AspContext context)
          Obtains an array index, or calls a function, of a Java object.
 java.lang.Object JavaObjectNode.JavaFieldNode.execute(VarListNode vars, AspContext context)
          Executes this field given a parameter list.
private static java.util.Vector JavaObjectNode.JavaFieldNode.executeAndDereference(VarListNode params, AspContext context)
          Internal function which executes and dereferences the list of parameters in a VarListNode.
 java.lang.Object FunctionNode.execute(VarListNode vars, AspContext context)
          Executes a function with the specified parameters.
 java.lang.Object ArrayNode.getIndex(VarListNode varlist, AspContext context)
          Obtains an element of this array.
 java.lang.Object AbstractFunctionNode.execute(VarListNode varList, AspContext context)
          Overloaded class to handle executing functions, will convert the variable list passed in to a Vector of elements.
 

Constructors in com.tripi.asp with parameters of type VarListNode
SubDefinitionNode(IdentNode ident, VarListNode identlist, BlockNode block, boolean isFunction)
          Constructor.
SelectNode(Node expr, VarListNode statements)
           
RedimNode(IdentNode ident, VarListNode dimensions, boolean preserve)
          Constructor.
GetIndexNode(Node ident, VarListNode expr)
          Constructor.
GetIndexNode(Node ident, VarListNode expr, boolean func)
          Constructor.
DefineIdentArrayNode(IdentNode ident, VarListNode dimensions)
          Constructor.
CaseNode(VarListNode tests, BlockNode exec)
          Constructor to create a new case node.