com.irs.jam
Class ExpList

java.lang.Object
  |
  +--com.irs.jam.DList
        |
        +--com.irs.jam.ExpList
All Implemented Interfaces:
java.io.Serializable

public class ExpList
extends DList
implements java.io.Serializable

Expression List

See Also:
Serialized Form

Fields inherited from class com.irs.jam.DList
_count, _head
 
Constructor Summary
ExpList()
           
ExpList(Expression e)
           
 
Method Summary
 ExpList explistEval(Binding binding)
          Convert all variables elements of the expression into constants
 void format(java.io.PrintStream s, Binding b)
          Format the output so that it's conducive to being printed out in-line with other information.
 void print(java.io.PrintStream s, Binding b)
          Format the output and don't worry about being printed out in-line with other information.
 
Methods inherited from class com.irs.jam.DList
addAfter, addAfter, addBefore, addBefore, append, append, clear, createHead, first, getCount, insert, insert, isEmpty, last, nth, pop, remove, removeNth, replace, replaceNth
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ExpList

public ExpList()

ExpList

public ExpList(Expression e)
Method Detail

explistEval

public ExpList explistEval(Binding binding)
Convert all variables elements of the expression into constants

print

public void print(java.io.PrintStream s,
                  Binding b)
Format the output and don't worry about being printed out in-line with other information.

format

public void format(java.io.PrintStream s,
                   Binding b)
Format the output so that it's conducive to being printed out in-line with other information.