Uses of Interface
org.tromer.jie.syntaxtree.NodeListInterface

Packages that use NodeListInterface
org.tromer.jie.syntaxtree Java abstract syntax tree nodes, generated by JavaCC from JTB-generated grammar. 
org.tromer.jie.visitor Basic visitor classes for Java abstract syntax trees, generated by JTB and by JIE's makeVisitors.pl script. 
 

Uses of NodeListInterface in org.tromer.jie.syntaxtree
 

Classes in org.tromer.jie.syntaxtree that implement NodeListInterface
 class NodeList
          Represents a grammar list, e.g.
 class NodeListOptional
          Represents an optional grammar list, e.g.
 class NodeSequence
          Represents a sequence of nodes nested within a choice, list, optional list, or optional, e.g.
 

Uses of NodeListInterface in org.tromer.jie.visitor
 

Methods in org.tromer.jie.visitor with parameters of type NodeListInterface
protected  void TreeFormatter.processList(NodeListInterface n)
          Accepts a NodeListInterface object and performs an optional format command between each node in the list (but not after the last node).
protected  void TreeFormatter.processList(NodeListInterface n, FormatCommand cmd)