Uses of Class
pmp.CallStackItem

Packages that use CallStackItem
pmp This package contains core classes of PMP macroprocessor. 
 

Uses of CallStackItem in pmp
 

Methods in pmp that return CallStackItem
 CallStackItem CallStack.addField(java.lang.String str)
          Adds new field into array on top of the stack.
 CallStackItem CallStack.appendToLastField(java.lang.String str)
          Appends strto last field in array on top of the stack.
 CallStackItem CallStack.popItem()
          Pops item from stack.
 CallStackItem CallStack.pushItem(CallStackItem.Type type, java.lang.String[] params)
          Pushes new item to stack.
 CallStackItem CallStack.pushItem(CallStackItem item)
          Pushes new item to stack.
 CallStackItem CallStack.pushMacroItem(java.lang.String macroName, AbstractMacro macro)
          Pushes new item to stack.
 CallStackItem CallStack.stripParamFields()
          Removes all parameter fields from item on top of the stack.
 CallStackItem CallStack.topItem()
          Returns item on top of the stack or null if stack is empty.
 

Methods in pmp with parameters of type CallStackItem
 CallStackItem CallStack.pushItem(CallStackItem item)
          Pushes new item to stack.
 java.lang.String Macroprocessor.runMacro(CallStackItem item)
          Invokes macro's AbstractMacro.run(Macroprocessor,String[]) method and returns result.