imx.lib.listener
Interface ListenerInterface

All Known Implementing Classes:
ConfigurableFileView, HandlerView, ICollectionSelector, IComboBox, InforMatrixPanel, LoggerSelector, LoggerView, SimpleSelectView, TextFilterView

public interface ListenerInterface

Each observer of the observer pattern should implement this interface. It is general, so that every listener can connect to every active object. Specific information (subject, eventtype, etc) can be passed with the command object. As a general convention, if you don't want to pass a specific command object pass the calling object instead of null.

See Also:
ActiveInterface

Method Summary
 void update(java.lang.Object command)
           
 

Method Detail

update

void update(java.lang.Object command)