Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.app / org.gvsig.app.mainplugin / src / main / java / org / gvsig / app / project / documents / view / info / gui / FInfoDialogXML.java @ 40558

History | View | Annotate | Download (3.59 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
/*
25
 * Created on 13-sep-2004
26
 *
27
 */
28
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
29
 *
30
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
31
 *
32
 * This program is free software; you can redistribute it and/or
33
 * modify it under the terms of the GNU General Public License
34
 * as published by the Free Software Foundation; either version 2
35
 * of the License, or (at your option) any later version.
36
 *
37
 * This program is distributed in the hope that it will be useful,
38
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
39
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
40
 * GNU General Public License for more details.
41
 *
42
 * You should have received a copy of the GNU General Public License
43
 * along with this program; if not, write to the Free Software
44
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
45
 *
46
 * For more information, contact:
47
 *
48
 *  Generalitat Valenciana
49
 *   Conselleria d'Infraestructures i Transport
50
 *   Av. Blasco Ib??ez, 50
51
 *   46010 VALENCIA
52
 *   SPAIN
53
 *
54
 *      +34 963862235
55
 *   gvsig@gva.es
56
 *      www.gvsig.gva.es
57
 *
58
 *    or
59
 *
60
 *   IVER T.I. S.A
61
 *   Salamanca 50
62
 *   46005 Valencia
63
 *   Spain
64
 *
65
 *   +34 963163400
66
 *   dac@iver.es
67
 */
68
package org.gvsig.app.project.documents.view.info.gui;
69

    
70
import org.gvsig.andami.PluginServices;
71
import org.gvsig.andami.ui.mdiManager.IWindow;
72
import org.gvsig.andami.ui.mdiManager.WindowInfo;
73
import org.gvsig.utils.xmlViewer.XMLViewer;
74

    
75

    
76

    
77
/**
78
 * Di?logo utilizado para mostrar la infromaci?n.
79
 *
80
 * @author fernando To change the template for this generated type comment go
81
 *                    to Window>Preferences>Java>Code Generation>Code and
82
 *                    Comments
83
 */
84
public class FInfoDialogXML extends XMLViewer implements IWindow {
85

    
86

    
87
        public FInfoDialogXML(){
88
                super();
89
                setNamesColumn(new String[]{PluginServices.getText(this, "Atributo"), PluginServices.getText(this, "Valor")});
90
                setSize(500, 375);
91
        }
92
        /**
93
         * @see com.iver.mdiApp.ui.MDIManager.IWindow#windowActivated()
94
         */
95
        public void viewActivated() {
96
        }
97

    
98
        /* (non-Javadoc)
99
         * @see com.iver.mdiApp.ui.MDIManager.View#getViewInfo()
100
         */
101
        public WindowInfo getWindowInfo() {
102
                WindowInfo m_viewinfo = new WindowInfo(WindowInfo.MODELESSDIALOG |
103
                                WindowInfo.RESIZABLE | WindowInfo.PALETTE);
104
                m_viewinfo.setWidth(getWidth()+8);
105
                m_viewinfo.setHeight(getHeight());
106
                m_viewinfo.setTitle(PluginServices.getText(this,
107
                                "Identificar_Resultados"));
108

    
109
                return m_viewinfo;
110
        }
111

    
112
        /**
113
         * @see com.iver.mdiApp.ui.MDIManager.SingletonWindow#getWindowModel()
114
         */
115
        public Object getViewModel() {
116
                return "FInfoDialogXML";
117
        }
118
        public Object getWindowProfile() {
119
                return WindowInfo.PROPERTIES_PROFILE;
120
        }
121
}