Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_data / src / org / gvsig / fmap / data / feature / impl / commands / implementation / SelectionCommandReverse.java @ 24194

History | View | Annotate | Download (742 Bytes)

1
package org.gvsig.fmap.data.feature.impl.commands.implementation;
2

    
3
import org.gvsig.fmap.data.feature.FeatureReferenceSelection;
4
import org.gvsig.fmap.data.feature.impl.commands.AbstractCommand;
5
import org.gvsig.tools.exception.NotYetImplemented;
6

    
7
public class SelectionCommandReverse extends AbstractCommand {
8

    
9
        public SelectionCommandReverse(FeatureReferenceSelection selection) {
10
                // TODO Auto-generated constructor stub
11
                throw new NotYetImplemented();
12
        }
13

    
14
        public void execute() {
15
                // TODO Auto-generated method stub
16

    
17
        }
18

    
19
        public String getType() {
20
                // TODO Auto-generated method stub
21
                return null;
22
        }
23

    
24
        public void redo() {
25
                // TODO Auto-generated method stub
26

    
27
        }
28

    
29
        public void undo() {
30
                // TODO Auto-generated method stub
31

    
32
        }
33

    
34
}