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 / AbstractFeatureCommand.java @ 40559

History | View | Annotate | Download (2.25 KB)

1 40559 jjdelcerro
/**
2
 * gvSIG. Desktop Geographic Information System.
3 40435 jjdelcerro
 *
4 40559 jjdelcerro
 * Copyright (C) 2007-2013 gvSIG Association.
5 40435 jjdelcerro
 *
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 40559 jjdelcerro
 * as published by the Free Software Foundation; either version 3
9 40435 jjdelcerro
 * 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 40559 jjdelcerro
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20 40435 jjdelcerro
 *
21 40559 jjdelcerro
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23 40435 jjdelcerro
 */
24
package org.gvsig.fmap.dal.feature.impl.undo.command;
25
26
import org.gvsig.fmap.dal.exception.DataException;
27
import org.gvsig.fmap.dal.feature.Feature;
28
import org.gvsig.fmap.dal.feature.impl.DefaultFeatureStore;
29
import org.gvsig.tools.undo.RedoException;
30
import org.gvsig.tools.undo.command.impl.AbstractCommand;
31
32
33
/**
34
 * Add the methods and constructors to use Features.
35
 *
36
 * @author Vicente Caballero Navarro
37
 */
38
public abstract class AbstractFeatureCommand extends AbstractCommand {
39
    protected Feature feature;
40
    protected DefaultFeatureStore featureStore;
41
42
    protected AbstractFeatureCommand(DefaultFeatureStore featureStore,
43
        Feature feature, String description) {
44
        super(description);
45
        this.featureStore = featureStore;
46
        this.feature = feature;
47
    }
48
49
    /**
50
     * Returns the Feature of this command.
51
     *
52
     * @return Feature.
53
     */
54
    public Feature getFeature() {
55
        return feature;
56
    }
57
58
59
    public int getType() {
60
        return DELETE;
61
    }
62
63
64
    public void redo() throws RedoException {
65
        try {
66
            execute();
67
        } catch (DataException e) {
68
            throw new RedoException(this, e);
69
        }
70
    }
71
72
    public abstract void execute() throws DataException;
73
}