public interface IModelChangeListener
Note: Implementations of this interface are discouraged to not maintain a reference to the model as a member element. Because models may contain a very large amount of memory, the application should be designed so that only one model is loaded at a time. The recommended approach is for the listener to maintain a reference to the DataViewingPanel and use it to obtain a reference to the model as a local variable within the scope of methods that need it.
| Modifier and Type | Method and Description |
|---|---|
void |
modelAdded(IModel model)
Invoked whenever a model is added.
|
void |
modelRemoved()
Invoked whenever a model is removed.
|
void modelRemoved()
void modelAdded(IModel model)
model - a valid modelCopyright © 2019. All rights reserved.