ami
Interface AMISubject

All Known Implementing Classes:
AMISubjectAdapter

public interface AMISubject

Subject in Observer pattern ( see GOF )

Version:
1.0
Author:
Bertrand Florat

Method Summary
 void attach(AMIObserver aob)
          Add a new subject observer
 void detach(AMIObserver aob)
          Remove a subject observer
 void notifyEvent()
          Notify the observer about an event
 

Method Detail

attach

public void attach(AMIObserver aob)
Add a new subject observer

detach

public void detach(AMIObserver aob)
Remove a subject observer

notifyEvent

public void notifyEvent()
Notify the observer about an event