01: /*
02: * Created on Oct 4, 2004
03: */
04: package uk.org.ponder.util;
05:
06: /**
07: * The equivalent of a C++ OutputIterator - delivers objects into a collection.
08: * @author Antranig Basman (antranig@caret.cam.ac.uk)
09: *
10: */
11: public interface Denumeration {
12: public void add(Object o);
13:
14: public boolean remove(Object o);
15: }
|