net.sourceforge.toscanaj.observer
Interface ChangeObserver

All Known Implementing Classes:
ConceptInterpretationContext, DiagramView, LabelView, ToscanaJMainPanel

public interface ChangeObserver

Generic observer for simple changes. We can't use Observer/Observable from java.util since we don't have multiple inheritance or mixin classes. This observer can be used for simple update notifications without passing additional information.


Method Summary
 void update(java.lang.Object source)
          Callback for getting notice on changes.
 

Method Detail

update

public void update(java.lang.Object source)
Callback for getting notice on changes.



The ToscanaJ project