| de.jwic.util.SerObserver
SerObserver | public interface SerObserver extends Serializable(Code) | | This is a Serializable version of the java.util.Observable class. It is
recommend to use this version instead of the original one as the
original one does not support serializsation.
author: Florian Lippisch (original from Chris Warth) See Also: java.util.Observer See Also: de.jwic.util.SerObservable |
update | void update(SerObservable o, Object arg)(Code) | | This method is called whenever the observed object is changed. An
application calls an Observable object's
notifyObservers method to have all the object's
observers notified of the change.
Parameters: o - the observable object. Parameters: arg - an argument passed to the notifyObservers method. |
|
|