org.apache.ws.jaxme.pm.impl
Class PMImpl.ListObserver

java.lang.Object
  extended by org.apache.ws.jaxme.pm.impl.PMImpl.ListObserver
All Implemented Interfaces:
Observer
Enclosing class:
PMImpl

public static class PMImpl.ListObserver
extends java.lang.Object
implements Observer

The ListObserver is a basic Observer, which collects result objects in a List.


Constructor Summary
PMImpl.ListObserver(java.util.List pList)
          Creates a new ListObserver, which writes the received objects into the List pList.
 
Method Summary
 void notify(java.lang.Object pObservable)
          The Observable indicates that its state has changed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PMImpl.ListObserver

public PMImpl.ListObserver(java.util.List pList)
Creates a new ListObserver, which writes the received objects into the List pList.

Method Detail

notify

public void notify(java.lang.Object pObservable)
Description copied from interface: Observer

The Observable indicates that its state has changed. The Observer must inspect the Observable to detect what exactly has changed.

Specified by:
notify in interface Observer