Uses of Interface
org.coffeecrew.mobile.oop.util.Observer

Packages that use Observer
org.coffeecrew.mobile.oop.impl   
org.coffeecrew.mobile.oop.util   
 

Uses of Observer in org.coffeecrew.mobile.oop.impl
 

Classes in org.coffeecrew.mobile.oop.impl that implement Observer
 class BulkObjectPusher
          This class implements a mechanism to send multiple objects that are stored in a java.util.Vector to safely transfer them to a remote device.
 

Uses of Observer in org.coffeecrew.mobile.oop.util
 

Methods in org.coffeecrew.mobile.oop.util with parameters of type Observer
 void Observable.addObserver(Observer observer)
          Adds an observer to this object which should be informed if the state of this object changes.
 void Observable.deleteObserver(Observer observer)
          Deletes the specified observer from the list of observers so no more updates will be delivered to the observer