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 @ 44259

History | View | Annotate | Download (2.76 KB)

1 40558 jjdelcerro
/**
2
 * gvSIG. Desktop Geographic Information System.
3 40435 jjdelcerro
 *
4 40558 jjdelcerro
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6 40435 jjdelcerro
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8 40558 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 40558 jjdelcerro
 *
11 40435 jjdelcerro
 * 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 40558 jjdelcerro
 *
16 40435 jjdelcerro
 * 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 40558 jjdelcerro
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 40435 jjdelcerro
 * MA  02110-1301, USA.
20 40558 jjdelcerro
 *
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 40435 jjdelcerro
 */
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 40731 jldominguez
import org.gvsig.app.project.documents.table.gui.toc.ShowAttributesTableTocMenuEntry;
30 40435 jjdelcerro
import org.gvsig.fmap.dal.serverexplorer.filesystem.swing.FilesystemExplorerTableWizardPanel;
31
import org.gvsig.tools.ToolsLocator;
32 40731 jldominguez
import org.gvsig.tools.extensionpoint.ExtensionPoint;
33 40435 jjdelcerro
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 43989 jjdelcerro
    @Override
44 40435 jjdelcerro
    public void initialize() {
45 40731 jldominguez
46 40435 jjdelcerro
        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 40731 jldominguez
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 40435 jjdelcerro
    }
60
61 43989 jjdelcerro
    @Override
62 40435 jjdelcerro
    public void postInitialize() {
63
        TableManager.register();
64
        ApplicationLocator.getManager().registerAddTableWizard("File",
65
            "File Table", FilesystemExplorerTableWizardPanel.class);
66
    }
67
68 43989 jjdelcerro
    @Override
69 40435 jjdelcerro
    public boolean isEnabled() {
70
        return true;
71
    }
72
73 43989 jjdelcerro
    @Override
74 40435 jjdelcerro
    public boolean isVisible() {
75
        return true;
76
    }
77
78 43989 jjdelcerro
    @Override
79 40435 jjdelcerro
    public void execute(String actionCommand) {
80
        // Nothing to do
81
    }
82
83
}