Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / extensions / org.gvsig.selectiontools.app / org.gvsig.selectiontools.app.extension / src / main / java / org / gvsig / selectiontools / app / extension / SelectionToolsExtension.java @ 34006

History | View | Annotate | Download (1.47 KB)

1
package org.gvsig.selectiontools.app.extension;
2

    
3
/* gvSIG. Geographic Information System of the Valencian Government
4
 *
5
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
6
 * of the Valencian Government (CIT)
7
 *
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21
 * MA  02110-1301, USA.
22
 *
23
 */
24

    
25
import org.gvsig.andami.plugins.Extension;
26

    
27
/**
28
 * Andami extension to show SelectionTools in the application.
29
 * 
30
 * @author gvSIG Team
31
 * @version $Id$
32
 */
33
public class SelectionToolsExtension extends Extension {
34

    
35
    public void initialize() {
36
        // Do nothing
37
    }
38

    
39
    @Override
40
    public void postInitialize() {
41
        super.postInitialize();
42
    }
43

    
44
    public void execute(String actionCommand) {
45
    }
46

    
47
    public boolean isEnabled() {
48
        return true;
49
    }
50

    
51
    public boolean isVisible() {
52
        return true;
53
    }
54

    
55
}