Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / extensions / org.gvsig.app.document.table.app / org.gvsig.app.document.table.app.mainplugin / src / main / java / org / gvsig / app / extension / TableEditAttributes.java @ 36443

History | View | Annotate | Download (2.73 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
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 2
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
 */
22
package org.gvsig.app.extension;
23

    
24
import org.gvsig.andami.PluginServices;
25
import org.gvsig.andami.messages.NotificationManager;
26
import org.gvsig.andami.plugins.Extension;
27
import org.gvsig.andami.ui.mdiManager.IWindow;
28
import org.gvsig.app.project.documents.table.TableDocument;
29
import org.gvsig.app.project.documents.table.gui.FeatureTableDocumentPanel;
30
import org.gvsig.app.project.documents.table.gui.FeatureTypeEditingPanel;
31
import org.gvsig.fmap.dal.exception.DataException;
32
import org.gvsig.fmap.dal.feature.FeatureStore;
33

    
34
/**
35
 * Extensi?n que abre la ventana para cambiar la configuraci?n de la estructura
36
 * de la tabla.
37
 * 
38
 * @author Vicente Caballero Navarro
39
 */
40
public class TableEditAttributes extends Extension {
41

    
42
    private FeatureTableDocumentPanel table = null;
43

    
44
    /**
45
     * @see com.iver.mdiApp.plugins.IExtension#updateUI(java.lang.String)
46
     */
47
    public void execute(String s) {
48
        TableDocument pt = table.getModel();
49
        FeatureStore fs = pt.getStore();
50
        try {
51
            PluginServices.getMDIManager().addWindow(
52
                new FeatureTypeEditingPanel(fs));
53
        } catch (DataException e) {
54
            NotificationManager.addError(
55
                PluginServices.getText(this, "create_editabletype"), e);
56
        }
57
    }
58

    
59
    /**
60
     * @see org.gvsig.andami.plugins.IExtension#initialize()
61
     */
62
    public void initialize() {
63
    }
64

    
65
    public boolean isEnabled() {
66
        FeatureStore fs = table.getModel().getStore();
67
        return fs.isEditing();
68
    }
69

    
70
    /**
71
     * @see org.gvsig.andami.plugins.IExtension#isVisible()
72
     */
73
    public boolean isVisible() {
74
        IWindow v = PluginServices.getMDIManager().getActiveWindow();
75
        if (v != null && v instanceof FeatureTableDocumentPanel) {
76
            table = (FeatureTableDocumentPanel) v;
77
            return true;
78
        }
79
        return false;
80
    }
81

    
82
}