Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.impl / src / main / java / org / gvsig / fmap / dal / feature / impl / undo / command / SelectionCommandSelect.java @ 40559

History | View | Annotate | Download (2.5 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2008 {DiSiD Technologies}  {Implement data selection}
27
 */
28
package org.gvsig.fmap.dal.feature.impl.undo.command;
29

    
30
import org.gvsig.fmap.dal.feature.FeatureReference;
31
import org.gvsig.fmap.dal.feature.impl.DefaultFeatureReferenceSelection;
32
import org.gvsig.tools.undo.RedoException;
33
import org.gvsig.tools.undo.UndoException;
34
import org.gvsig.tools.undo.command.impl.AbstractCommand;
35

    
36
/**
37
 * Command to allow undo and redo over a select or deselect operation performed
38
 * on a selection.
39
 * 
40
 * @author <a href="mailto:cordin@disid.com">C?sar Ordi?ana</a>
41
 */
42
public class SelectionCommandSelect extends AbstractCommand {
43

    
44
        private final DefaultFeatureReferenceSelection selection;
45
    private final FeatureReference reference;
46
    private final boolean select;
47

    
48
    public SelectionCommandSelect(DefaultFeatureReferenceSelection selection,
49
            FeatureReference reference, boolean select, String description) {
50
        super(description);
51
        this.selection = selection;
52
        this.reference = reference;
53
        this.select = select;
54
        }
55

    
56
        public void execute() {
57
            // Nothing to do
58
        }
59

    
60
        public int getType() {
61
        return UPDATE; // select ? INSERT : DELETE;
62
        }
63
        
64
        public void undo() throws UndoException {
65
        performSelection(!select);
66
    }
67

    
68
        public void redo() throws RedoException {
69
        performSelection(select);
70
        }
71

    
72
    private void performSelection(boolean doSelection) {
73
        if (doSelection) {
74
            selection.select(reference, false);
75
        } else {
76
            selection.deselect(reference, false);
77
        }
78
    }
79
}