Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / main / java / org / gvsig / fmap / mapcontext / layers / BaseLayerCollectionListener.java @ 44461

History | View | Annotate | Download (865 Bytes)

1 43640 jjdelcerro
package org.gvsig.fmap.mapcontext.layers;
2
3
/**
4
 * Utility class to implements LayerCollectionListener overwriting only
5
 * some events.
6
 */
7
public class BaseLayerCollectionListener implements LayerCollectionListener {
8
9
    @Override
10
    public void layerAdded(LayerCollectionEvent e) {
11
    }
12
13
    @Override
14
    public void layerMoved(LayerPositionEvent e) {
15
    }
16
17
    @Override
18
    public void layerRemoved(LayerCollectionEvent e) {
19
    }
20
21
    @Override
22
    public void layerAdding(LayerCollectionEvent e) throws CancelationException {
23
    }
24
25
    @Override
26
    public void layerMoving(LayerPositionEvent e) throws CancelationException {
27
    }
28
29
    @Override
30
    public void layerRemoving(LayerCollectionEvent e) throws CancelationException {
31
    }
32
33
    @Override
34
    public void visibilityChanged(LayerCollectionEvent e) throws CancelationException {
35
    }
36
37
}