/[xulu]/branches/1.8-gt2-2.6/src/appl/ext/ConfigurationEditorPlugin.java
ViewVC logotype

Contents of /branches/1.8-gt2-2.6/src/appl/ext/ConfigurationEditorPlugin.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 47 - (show annotations)
Mon Aug 31 14:23:19 2009 UTC (15 years, 3 months ago) by mojays
File size: 1038 byte(s)
Branch 1.8-gt2-2.6 (from rev 45) for geotools 2.6 migration
1 package appl.ext;
2
3 import java.util.ResourceBundle;
4
5 import appl.util.XuluFrameAdapter;
6 import edu.bonn.xulu.XuluModellingPlatform;
7 import edu.bonn.xulu.gui.XuluInternalFrame;
8 import edu.bonn.xulu.plugin.appl.AbstractMenuPlugin;
9 import static edu.bonn.xulu.appl.XuluConstants.XULUGUI_RES;
10 /**
11 * The configuration plug-in.
12 *
13 * @see XuluConfig
14 * @see ConfigurationEditorGUI
15 * @see ConfigurationEditorEngine
16 * @author Dominik Appl
17 */
18 public class ConfigurationEditorPlugin extends AbstractMenuPlugin {
19
20 /*
21 * (non-Javadoc)
22 *
23 * @see edu.bonn.xulu.plugin.appl.AbstractMenuPlugin#createPluginApplication()
24 */
25
26 @Override
27 protected XuluInternalFrame createPluginApplication() throws Exception {
28 ConfigurationEditorGUI GUI = new ConfigurationEditorEngine().getGUI();
29 return new XuluFrameAdapter(XULUGUI_RES
30 .getString("Menu_Advanced_Preferences"), GUI);
31 }
32
33 /**
34 *
35 */
36 public ConfigurationEditorPlugin() {
37 super(4, XULUGUI_RES.getString("Menu_Advanced_Preferences"));
38
39 }
40
41 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26