Interface ILcdModelListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
ALcdWeakModelListener

public interface ILcdModelListener extends EventListener
The listener interface for receiving model change events. Classes that are interested in changes need to implement this interface and register themselves on the model via the ILcdModel.addModelListener(ILcdModelListener) method. All registered listeners will be notified when a model element has been added, removed or changed.

See the template code example in TLcdModelChangedEvent on how to handle model change events.

Note that changes may be collected or silently applied without notification, depending on the mode that was used when the change was applied on the model. See ILcdModel for an overview of how the different event modes are handled.

See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Notifies this model listener that a model has changed.
  • Method Details