Revision 47554

View differences:

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/LayerCollectionAdapter.java
1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.fmap.mapcontext.layers;
7

  
8
/**
9
 *
10
 * @author fdiaz
11
 */
12
public class LayerCollectionAdapter implements LayerCollectionListener {
13

  
14
    @Override
15
    public void layerAdded(LayerCollectionEvent e) {
16
    }
17

  
18
    @Override
19
    public void layerMoved(LayerPositionEvent e) {
20
    }
21

  
22
    @Override
23
    public void layerRemoved(LayerCollectionEvent e) {
24
    }
25

  
26
    @Override
27
    public void layerAdding(LayerCollectionEvent e) throws CancelationException {
28
    }
29

  
30
    @Override
31
    public void layerMoving(LayerPositionEvent e) throws CancelationException {
32
    }
33

  
34
    @Override
35
    public void layerRemoving(LayerCollectionEvent e) throws CancelationException {
36
    }
37

  
38
    @Override
39
    public void visibilityChanged(LayerCollectionEvent e) throws CancelationException {
40
    }
41
    
42
    
43
}

Also available in: Unified diff