Uses of Class
com.isima.zz3.advjava.tp1.observer.AObserver

Packages that use AObserver
com.isima.zz3.advjava.tp1.observer   
 

Uses of AObserver in com.isima.zz3.advjava.tp1.observer
 

Subclasses of AObserver in com.isima.zz3.advjava.tp1.observer
 class Observer
           
 

Methods in com.isima.zz3.advjava.tp1.observer that return AObserver
 AObserver[] ASubject.observersToArray()
          Returns all elements of this collection in an array.
 AObserver[] ASubject.observersToArray(AObserver[] observers_)
          Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array.
 

Methods in com.isima.zz3.advjava.tp1.observer that return types with arguments of type AObserver
 java.util.Collection<AObserver> ASubject.getObservers()
          Getter of the property observers_
 java.util.Iterator<AObserver> ASubject.observersIterator()
          Returns an iterator over the elements in this collection.
 

Methods in com.isima.zz3.advjava.tp1.observer with parameters of type AObserver
 void ASubject.bind(AObserver observer)
          Attache un observateur au sujet.
 boolean ASubject.containsObservers(AObserver aObserver)
          Returns true if this collection contains the specified element.
 AObserver[] ASubject.observersToArray(AObserver[] observers_)
          Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array.
 void ASubject.unbind(AObserver observer)
          Détache un observateur du sujet.