com.ibm.tivoli.maximo.report.expr

Class Collector

  • java.lang.Object
    • com.ibm.tivoli.maximo.report.expr.Collector
  • All Implemented Interfaces:
    Node.Visitor
    Direct Known Subclasses:
    TypeCollector


    public abstract class Collector
    extends java.lang.Object
    implements Node.Visitor
    A collect is a Node.Visitor that will collect items if they are accepted by the collector's accept() method. Collectors are used to traverse the parsed Node tree and collect items as it goes by evaluating each node against the collecter's accpet() method. Subclasses simply need to override the accept(Node) method.