public static interface LayerManager.LayerChangeListener
Modifier and Type | Method and Description |
---|---|
void |
layerAdded(LayerManager.LayerAddEvent e)
Notifies this listener that a layer has been added.
|
void |
layerOrderChanged(LayerManager.LayerOrderChangeEvent e)
Notifies this listener that the order of layers was changed.
|
void |
layerRemoving(LayerManager.LayerRemoveEvent e)
Notifies this listener that a layer is about to be removed.
|
void layerAdded(LayerManager.LayerAddEvent e)
Listeners are called in the EDT thread and you can manipulate the layer manager in the current thread.
e
- The new added layer eventvoid layerRemoving(LayerManager.LayerRemoveEvent e)
Listeners are called in the EDT thread and you can manipulate the layer manager in the current thread.
e
- The layer to be removed (as event)void layerOrderChanged(LayerManager.LayerOrderChangeEvent e)
Listeners are called in the EDT thread and you can manipulate the layer manager in the current thread.
e
- The order change event.