Package com.luciad.model
Interface ILcdModelListener
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
ALcdWeakModelListener
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.
ILcdModel
for an overview of how the different event modes are handled.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
modelChanged
(TLcdModelChangedEvent aEvent) Notifies this model listener that a model has changed.
-
Method Details
-
modelChanged
Notifies this model listener that a model has changed.See the
template code example
inTLcdModelChangedEvent
on how to handle model change events.- Parameters:
aEvent
- theTLcdModelChangedEvent
that contains relevant information on the change(s).
-