All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface oplan.util.Collector

public interface Collector
A Collector can be given new elements and can return an Enumeration of the elements it has been given so far. However, the Enumeration is not necessarily a snapshot.

The name "Collector" was chosen to avoid taking "Collection", and hence to avoid conflicts with various collection packages.

See Also:
Seq, ListCollector

Method Index

 o addElement(Object)
 o elements()

Methods

 o addElement
 public abstract void addElement(Object e)
 o elements
 public abstract Enumeration elements()

All Packages  Class Hierarchy  This Package  Previous  Next  Index