Statistics
| Revision:

svn-gvsig-desktop / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / ViewProjectWindow.java @ 1099

History | View | Annotate | Download (758 Bytes)

1 312 fernando
package com.iver.cit.gvsig;
2
3 596 fernando
import com.iver.andami.PluginServices;
4
import com.iver.andami.plugins.Extension;
5 312 fernando
6
7 596 fernando
8
public class ViewProjectWindow implements Extension {
9 312 fernando
        /**
10
         * @see com.iver.mdiApp.plugins.Extension#updateUI(java.lang.String)
11
         */
12 596 fernando
        public void execute(String arg0) {
13
                ProjectExtension pe = (ProjectExtension) PluginServices.getExtension(com.iver.cit.gvsig.ProjectExtension.class);
14 312 fernando
                pe.showProjectWindow();
15
        }
16
17 596 fernando
        /**
18
         * @see com.iver.andami.plugins.Extension#inicializar()
19
         */
20
        public void inicializar() {
21
        }
22
23
        /**
24
         * @see com.iver.andami.plugins.Extension#isEnabled()
25
         */
26
        public boolean isEnabled() {
27 755 fernando
                return true;
28 596 fernando
        }
29
30
        /**
31
         * @see com.iver.andami.plugins.Extension#isVisible()
32
         */
33
        public boolean isVisible() {
34 755 fernando
                return true;
35 596 fernando
        }
36
37 312 fernando
}