Statistics
| Revision:

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

History | View | Annotate | Download (764 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 SelectionCommandSelectAll extends AbstractCommand {
8

    
9
        public SelectionCommandSelectAll(
10
                        FeatureReferenceSelection selection,
11
                        boolean b) {
12
                // TODO Auto-generated constructor stub
13
                throw new NotYetImplemented();
14
        }
15

    
16
        public void execute() {
17
                // TODO Auto-generated method stub
18

    
19
        }
20

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

    
26
        public void redo() {
27
                // TODO Auto-generated method stub
28

    
29
        }
30

    
31
        public void undo() {
32
                // TODO Auto-generated method stub
33

    
34
        }
35

    
36
}