Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.app.document.table.app / org.gvsig.app.document.table.app.mainplugin / src / main / java / org / gvsig / app / extension / TableExtension.java @ 43989

History | View | Annotate | Download (2.76 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
package org.gvsig.app.extension;
25

    
26
import org.gvsig.andami.plugins.Extension;
27
import org.gvsig.app.ApplicationLocator;
28
import org.gvsig.app.project.documents.table.TableManager;
29
import org.gvsig.app.project.documents.table.gui.toc.ShowAttributesTableTocMenuEntry;
30
import org.gvsig.fmap.dal.serverexplorer.filesystem.swing.FilesystemExplorerTableWizardPanel;
31
import org.gvsig.tools.ToolsLocator;
32
import org.gvsig.tools.extensionpoint.ExtensionPoint;
33
import org.gvsig.tools.extensionpoint.ExtensionPointManager;
34

    
35
/**
36
 * A gvSIG {@link Extension} to register the Table document type.
37
 * 
38
 * @author gvSIG Team
39
 * @version $Id$
40
 */
41
public class TableExtension extends Extension {
42

    
43
    @Override
44
    public void initialize() {
45
            
46
        ExtensionPointManager epMan = ToolsLocator.getExtensionPointManager();
47
        epMan.add("DocumentActions_Table",
48
            "Context menu options of the table document list"
49
                + " in the project window " + "(register instances of "
50
                + "org.gvsig.app.project.AbstractDocumentContextMenuAction)");
51
        
52
        // Adding TOC menu entry
53
            ExtensionPoint exPoint = ToolsLocator.getExtensionPointManager().add(
54
                                "View_TocActions", "");
55
                exPoint.append(
56
                                ShowAttributesTableTocMenuEntry.EXTENSION_POINT_NAME,
57
                                "TOC popup menu to show vector layer's attributes table",
58
                                new ShowAttributesTableTocMenuEntry());
59
    }
60

    
61
    @Override
62
    public void postInitialize() {
63
        TableManager.register();
64
        ApplicationLocator.getManager().registerAddTableWizard("File",
65
            "File Table", FilesystemExplorerTableWizardPanel.class);
66
    }
67

    
68
    @Override
69
    public boolean isEnabled() {
70
        return true;
71
    }
72

    
73
    @Override
74
    public boolean isVisible() {
75
        return true;
76
    }
77

    
78
    @Override
79
    public void execute(String actionCommand) {
80
        // Nothing to do
81
    }
82

    
83
}