01: package com.jamonapi;
02:
03: /** A listener implements this interface if it also can act as a factory. copy()
04: * should return an exact copy of the JAMonListener
05: * @author steve souza
06: *
07: */
08: publicinterface CopyJAMonListener {
09: publicJAMonListener copy();
10: }