Revision 39636

View differences:

tags/v2_0_0_Build_2063/applications/appgvSIG/buildNumber.properties
1
#maven.buildNumber.plugin properties file
2
#Fri Jan 25 13:04:02 CET 2013
3
buildNumber=2063
tags/v2_0_0_Build_2063/applications/appgvSIG/src-test/org/gvsig/app/AllTests.java
1
package org.gvsig.app;
2

  
3
import junit.framework.Test;
4
import junit.framework.TestSuite;
5

  
6
import org.gvsig.app.gui.filter.TestFilterExpressionFromWhereIsEmpty_Method;
7
import org.gvsig.app.panelGroup.Test2ExceptionsUsingTabbedPanel;
8
import org.gvsig.app.panelGroup.Test2ExceptionsUsingTreePanel;
9
import org.gvsig.app.panelGroup.TestPanelGroupLoaderFromExtensionPoint;
10
import org.gvsig.app.project.ProjectTest;
11
import org.gvsig.app.sqlQueryValidation.TestSQLQueryValidation;
12
import org.gvsig.app.test.Persistence;
13

  
14
public class AllTests {
15

  
16
	public static Test suite() {
17
		TestSuite suite = new TestSuite("Test for org.gvsig.app");
18
		//$JUnit-BEGIN$
19
		suite.addTestSuite(Persistence.class);
20
		suite.addTestSuite(ProjectTest.class);
21
		suite.addTestSuite(TestFilterExpressionFromWhereIsEmpty_Method.class);
22
		suite.addTestSuite(TestSQLQueryValidation.class);
23
		suite.addTestSuite(TestPanelGroupLoaderFromExtensionPoint.class);
24
		suite.addTestSuite(Test2ExceptionsUsingTabbedPanel.class);
25
		suite.addTestSuite(Test2ExceptionsUsingTreePanel.class);
26
		
27
		//$JUnit-END$
28
		return suite;
29
	}
30

  
31
}
0 32

  
tags/v2_0_0_Build_2063/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/Test2ExceptionsUsingTabbedPanel.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.app.panelGroup;
21

  
22
import junit.framework.TestCase;
23

  
24
import org.gvsig.gui.beans.Messages;
25
import org.gvsig.gui.beans.panelGroup.PanelGroupManager;
26
import org.gvsig.gui.beans.panelGroup.tabbedPanel.TabbedPanel;
27
import org.gvsig.tools.exception.BaseException;
28

  
29
import org.gvsig.app.panelGroup.loaders.PanelGroupLoaderFromExtensionPoint;
30
import org.gvsig.app.panelGroup.samples.Samples_ExtensionPointsOfIPanels;
31

  
32
/**
33
 * <p>
34
 * Tests the loading of layers using a {@link TabbedPanel TabbedPanel} object
35
 * and a {@link PanelGroupLoaderFromExtensionPoint
36
 * PanelGroupLoaderFromExtensionPoint} loader Tests also the managing of the
37
 * different kind of exceptions which could be launched during this process.
38
 * </p>
39
 * 
40
 * @version 11/12/2007
41
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es)
42
 */
43
public class Test2ExceptionsUsingTabbedPanel extends TestCase {
44
	private TabbedPanel panelGroup;
45
	private PanelGroupManager manager;
46
	private PanelGroupLoaderFromExtensionPoint loader;
47
	private String validationText;
48
	private String localizedMessage;
49

  
50
	/*
51
	 * (non-Javadoc)
52
	 * @see junit.framework.TestCase#setUp()
53
	 */
54
	protected void setUp() throws Exception {
55
		super.setUp();
56

  
57
		manager = PanelGroupManager.getManager();
58
		manager.registerPanelGroup(TabbedPanel.class);
59
		manager.setDefaultType(TabbedPanel.class);
60
		panelGroup = (TabbedPanel) manager.getPanelGroup(Samples_ExtensionPointsOfIPanels.REFERENCE3);
61
	}
62

  
63
	/*
64
	 * (non-Javadoc)
65
	 * @see junit.framework.TestCase#tearDown()
66
	 */
67
	protected void tearDown() throws Exception {
68
		super.tearDown();
69
		manager.deregisterPanelGroup(TabbedPanel.class);
70
	}
71

  
72
	/**
73
	 * <p>Test the 'PanelGroup' exceptions </p>
74
	 */
75
	public void test1() {
76
		Samples_ExtensionPointsOfIPanels.loadSample();
77

  
78
		validationText = Messages.getText("couldnt_add_some_panel_exception") + "\n  " + Messages.getText("couldnt_load_panels_from_extension_point_exception") + "\n  Error cargando un panel: / by zero.";
79

  
80
		try {
81
			System.out.println("----- Test 1 -----");
82
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT4_NAME);
83

  
84
			// Begin: Test the normal load
85
			panelGroup.loadPanels(loader);
86
			// End: Test the normal load
87
		} catch (BaseException bE) {
88
			localizedMessage = bE.getLocalizedMessageStack();
89
			System.out.println(localizedMessage);
90
			System.out.println("------------------");
91
			assertEquals(localizedMessage, validationText);
92
			return;
93
		} catch (Exception e) {
94
			e.printStackTrace();
95
			System.out.println("------------------");
96
			fail();
97
			return;
98
		}
99

  
100
		System.out.println("------------------");
101
		fail();
102
	}
103

  
104
	/**
105
	 * <p>Test the 'PanelGroup' exceptions </p>
106
	 */
107
	public void test2() {
108
		validationText = Messages.getText("couldnt_add_some_panel_exception") + "\n  Panel de etiqueta Information_LABEL sin tama?o inicial definido.";
109

  
110
		try {
111
			System.out.println("----- Test 2 -----");
112
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT5_NAME);
113

  
114
			// Begin: Test the normal load
115
			panelGroup.loadPanels(loader);
116
			// End: Test the normal load
117
		} catch (BaseException bE) {
118
			localizedMessage = bE.getLocalizedMessageStack().trim();
119
			System.out.println(localizedMessage);
120
			System.out.println("------------------");
121
			assertEquals(localizedMessage, validationText);
122
			return;
123
		} catch (Exception e) {
124
			e.printStackTrace();
125
			System.out.println("------------------");
126
			fail();
127
			return;
128
		}
129

  
130
		System.out.println("------------------");
131
		fail();
132
	}
133

  
134
	/**
135
	 * <p>Test the 'PanelGroup' exceptions </p>
136
	 */
137
	public void test3() {
138
		validationText = Messages.getText("empty_panel_group_exception");
139

  
140
		try {
141
			System.out.println("----- Test 3 -----");
142
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT6_NAME);
143

  
144
			// Begin: Test the normal load
145
			panelGroup.loadPanels(loader);
146
			// End: Test the normal load
147
		} catch (BaseException bE) {
148
			localizedMessage = bE.getLocalizedMessageStack().trim();
149
			System.out.println(localizedMessage);
150
			System.out.println("------------------");
151
			assertEquals(localizedMessage, validationText);
152
			return;
153
		} catch (Exception e) {
154
			e.printStackTrace();
155
			System.out.println("------------------");
156
			fail();
157
			return;
158
		}
159

  
160
		System.out.println("------------------");
161
		fail();
162
	}
163

  
164
	/**
165
	 * <p>Test the 'PanelGroup' exceptions </p>
166
	 */
167
	public void test4() {
168
		validationText = Messages.getText("empty_panel_group_gui_exception");
169

  
170
		try {
171
			System.out.println("----- Test 4 -----");
172
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT7_NAME);
173

  
174
			// Begin: Test the normal load
175
			panelGroup.loadPanels(loader);
176
			// End: Test the normal load
177
		} catch (BaseException bE) {
178
			localizedMessage = bE.getLocalizedMessageStack().trim();
179
			System.out.println(localizedMessage);
180
			System.out.println("------------------");
181
			assertEquals(localizedMessage, validationText);
182
			return;
183
		} catch (Exception e) {
184
			e.printStackTrace();
185
			System.out.println("------------------");
186
			fail();
187
			return;
188
		}
189

  
190
		System.out.println("------------------");
191
		fail();
192
	}
193

  
194
	/**
195
	 * <p>Test the 'PanelGroup' exceptions </p>
196
	 */
197
	public void test5() {
198
		validationText = Messages.getText("couldnt_add_some_panel_exception") + "\n  " + Messages.getText("couldnt_load_panels_from_extension_point_exception") + "\n  Error cargando un panel: / by zero.\n  Panel de etiqueta Information_LABEL sin tama?o inicial definido.\n  " + Messages.getText("empty_panel_group_exception");
199

  
200
		try {
201
			System.out.println("----- Test 5 -----");
202
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT8_NAME);
203

  
204
			// Begin: Test the normal load
205
			panelGroup.loadPanels(loader);
206
			// End: Test the normal load
207
		} catch (BaseException bE) {
208
			localizedMessage = bE.getLocalizedMessageStack().trim();
209
			System.out.println(localizedMessage);
210
			System.out.println("------------------");
211
			assertEquals(localizedMessage, validationText);
212
			return;
213
		} catch (Exception e) {
214
			e.printStackTrace();
215
			System.out.println("------------------");
216
			fail();
217
			return;
218
		}
219

  
220
		System.out.println("------------------");
221
		fail();
222
	}
223

  
224
	/**
225
	 * <p>Test the 'PanelGroup' exceptions </p>
226
	 */
227
	public void test6() {
228
		validationText = Messages.getText("couldnt_add_some_panel_exception") + "\n  " + Messages.getText("couldnt_load_panels_from_extension_point_exception") + "\n  Error cargando un panel: / by zero.\n  Panel de etiqueta Information_LABEL sin tama?o inicial definido.\n  " + Messages.getText("empty_panel_group_gui_exception");
229

  
230
		try {
231
			System.out.println("----- Test 6 -----");
232
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT9_NAME);
233

  
234
			// Begin: Test the normal load
235
			panelGroup.loadPanels(loader);
236
			// End: Test the normal load
237
		} catch (BaseException bE) {
238
			localizedMessage = bE.getLocalizedMessageStack().trim();
239
			System.out.println(localizedMessage);
240
			System.out.println("------------------");
241
			assertEquals(localizedMessage, validationText);
242
			return;
243
		} catch (Exception e) {
244
			e.printStackTrace();
245
			System.out.println("------------------");
246
			fail();
247
			return;
248
		}
249

  
250
		System.out.println("------------------");
251
		fail();
252
	}
253

  
254
	/**
255
	 * <p>Test the 'PanelGroup' exceptions </p>
256
	 */
257
	public void test7() {
258
		validationText = Messages.getText("couldnt_add_some_panel_exception") + "\n  " + Messages.getText("couldnt_load_panels_from_extension_point_exception") + "\n  Error cargando un panel: / by zero.\n  Panel de etiqueta Information_LABEL sin tama?o inicial definido.";
259

  
260
		try {
261
			System.out.println("----- Test 7 -----");
262
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT10_NAME);
263

  
264
			// Begin: Test the normal load
265
			panelGroup.loadPanels(loader);
266
			// End: Test the normal load
267
		} catch (BaseException bE) {
268
			localizedMessage = bE.getLocalizedMessageStack().trim();
269
			System.out.println(localizedMessage);
270
			System.out.println("------------------");
271
			assertEquals(localizedMessage, validationText);
272
			return;
273
		} catch (Exception e) {
274
			e.printStackTrace();
275
			System.out.println("------------------");
276
			fail();
277
			return;
278
		}
279

  
280
		System.out.println("------------------");
281
		fail();
282
	}
283
}
tags/v2_0_0_Build_2063/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/TestPanelGroupLoaderFromExtensionPoint.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.app.panelGroup;
21

  
22
import java.util.ArrayList;
23

  
24
import junit.framework.TestCase;
25

  
26
import org.gvsig.gui.beans.panelGroup.panels.IPanel;
27

  
28
import org.gvsig.app.panelGroup.loaders.PanelGroupLoaderFromExtensionPoint;
29
import org.gvsig.app.panelGroup.samples.Samples_ExtensionPointsOfIPanels;
30

  
31
/**
32
 * <p>Tests {@link PanelGroupLoaderFromExtensionPoint PanelGroupLoaderFromExtensionPoint}.</p>
33
 * 
34
 * @version 16/10/2007
35
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
36
 */
37
public class TestPanelGroupLoaderFromExtensionPoint extends TestCase {
38

  
39
	/*
40
	 * (non-Javadoc)
41
	 * @see junit.framework.TestCase#setUp()
42
	 */
43
	protected void setUp() throws Exception {
44
		super.setUp();
45
	}
46

  
47
	/*
48
	 * (non-Javadoc)
49
	 * @see junit.framework.TestCase#tearDown()
50
	 */
51
	protected void tearDown() throws Exception {
52
		super.tearDown();
53
	}
54
	
55
	/**
56
	 * <p>Test, results must be valid.</p>
57
	 */
58
	public void test() {
59
		try {
60
			Samples_ExtensionPointsOfIPanels.loadSample();
61
			
62
			PanelGroupLoaderFromExtensionPoint loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT1_NAME);
63
			ArrayList<IPanel> panels = new ArrayList<IPanel>();
64

  
65
			loader.loadPanels(panels);
66

  
67
			// Check that has loaded all panels
68
			assertEquals(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINTS1_CLASSES.length, panels.size());
69
			
70
			int i = 0;
71

  
72
			while (i < Samples_ExtensionPointsOfIPanels.EXTENSIONPOINTS2_CLASSES.length) {
73
				// Check order and class types
74
				assertTrue(panels.get(i).getClass() == (Samples_ExtensionPointsOfIPanels.EXTENSIONPOINTS1_CLASSES[i++]));
75
			}
76

  
77
		} catch (Exception e) {
78
			e.printStackTrace();
79
			fail();
80
		}
81
	}
82
}
tags/v2_0_0_Build_2063/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/Test1ButtonsPanel.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.app.panelGroup;
21

  
22
import javax.swing.JFrame;
23

  
24
import org.gvsig.gui.beans.buttonspanel.ButtonsPanel;
25
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent;
26
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener;
27
import org.gvsig.gui.beans.panelGroup.PanelGroupManager;
28
import org.gvsig.gui.beans.panelGroup.loaders.PanelGroupLoaderFromList;
29
import org.gvsig.gui.beans.panelGroup.tabbedPanel.TabbedPanel;
30
import org.gvsig.tools.exception.BaseException;
31

  
32
import org.gvsig.andami.ui.mdiManager.WindowInfo;
33
import org.gvsig.app.panelGroup.samples.Samples_ExtensionPointsOfIPanels;
34

  
35
/**
36
 * <p>
37
 * Tests {@link PanelGroupDialog PanelGroupDialog}.
38
 * </p>
39
 * <p>
40
 * Tests {@link PanelGroupManager PanelGroupManager},
41
 * {@link PanelGroupLoaderFromList PanelGroupLoaderFromList},
42
 * {@link TabbedPanel TabbedPanel}, and a resizable {@link PanelGroupDialog
43
 * PanelGroupDialog}.
44
 * </p>
45
 * 
46
 * @version 16/10/2007
47
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es)
48
 */
49
public class Test1ButtonsPanel {
50
	/**
51
	 * <p>Element for the interface.</p>
52
	 */
53
	private static JFrame jFrame;
54

  
55
	/**
56
	 * <p>
57
	 * Test method for the Test1ButtonsPanel.
58
	 * </p>
59
	 * <p>
60
	 * Tests {@link PanelGroupManager PanelGroupManager},
61
	 * {@link PanelGroupLoaderFromList PanelGroupLoaderFromList},
62
	 * {@link TabbedPanel TabbedPanel}, and a resizable {@link PanelGroupDialog
63
	 * PanelGroupDialog}.
64
	 * </p>
65
	 * 
66
	 * @param args
67
	 *            optional arguments
68
	 */
69
	public static void main(String[] args) {
70
		try {
71
			// Objects creation
72
			jFrame = new JFrame();
73

  
74
			PanelGroupManager manager = PanelGroupManager.getManager();
75
			manager.registerPanelGroup(TabbedPanel.class);
76
			manager.setDefaultType(TabbedPanel.class);
77

  
78
			TabbedPanel panelGroup = (TabbedPanel) manager.getPanelGroup(Samples_ExtensionPointsOfIPanels.REFERENCE1);
79

  
80
			PanelGroupLoaderFromList loader = new PanelGroupLoaderFromList(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINTS1_CLASSES);
81

  
82
			// Creates the IWindow
83
			PanelGroupDialog panelGroupDialog = new PanelGroupDialog(Samples_ExtensionPointsOfIPanels.REFERENCE1_NAME, "Panels with Buttons", 800, 650, (byte)WindowInfo.RESIZABLE, panelGroup);
84

  
85
			// Begin: Test the normal load
86
			panelGroupDialog.loadPanels(loader);
87
			// End: Test the normal load
88

  
89
			panelGroupDialog.addButtonPressedListener(new ButtonsPanelListener() {
90
				/*
91
				 * @see org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener#actionButtonPressed(org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent)
92
				 */
93
				public void actionButtonPressed(ButtonsPanelEvent e) {
94
					switch (e.getButton()) {
95
						case ButtonsPanel.BUTTON_ACCEPT:
96
							System.out.println("Accept Button pressed.");
97
							hideJFrame();
98
							System.exit(0);
99
							break;
100
						case ButtonsPanel.BUTTON_CANCEL:
101
							System.out.println("Cancel Button pressed.");
102
							hideJFrame();
103
							System.exit(0);
104
							break;
105
						case ButtonsPanel.BUTTON_APPLY:
106
							System.out.println("Apply Button pressed.");
107
							break;
108
					}
109
				}
110
			});
111

  
112
			jFrame.setTitle("Test resizable PanelGroupDialog with tabs and using PanelGroupLoaderFromList");
113
		    jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
114
		    jFrame.setSize(panelGroupDialog.getPreferredSize());
115
		    jFrame.getContentPane().add(panelGroupDialog);
116

  
117
			jFrame.setVisible(true);
118

  
119
		} catch (BaseException bE) {
120
			System.out.println(bE.getLocalizedMessageStack());
121
		} catch (Exception e) {
122
			e.printStackTrace();
123
		}
124
	}
125

  
126
	/**
127
	 * <p>Hides the {@link JFrame JFrame}, hiding the graphical interface.</p>
128
	 */
129
	private static void hideJFrame() {
130
		jFrame.setVisible(false);
131
	}
132
}
tags/v2_0_0_Build_2063/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/Test2ButtonsPanel.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.app.panelGroup;
21

  
22
import javax.swing.JFrame;
23

  
24
import org.gvsig.gui.beans.buttonspanel.ButtonsPanel;
25
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent;
26
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener;
27
import org.gvsig.gui.beans.panelGroup.PanelGroupManager;
28
import org.gvsig.gui.beans.panelGroup.tabbedPanel.TabbedPanel;
29
import org.gvsig.tools.exception.BaseException;
30

  
31
import org.gvsig.andami.ui.mdiManager.WindowInfo;
32
import org.gvsig.app.panelGroup.loaders.PanelGroupLoaderFromExtensionPoint;
33
import org.gvsig.app.panelGroup.samples.Samples_ExtensionPointsOfIPanels;
34

  
35
/**
36
 * <p>
37
 * Tests {@link PanelGroupDialog PanelGroupDialog}.
38
 * </p>
39
 * <p>
40
 * Tests {@link PanelGroupManager PanelGroupManager},
41
 * {@link PanelGroupLoaderFromExtensionPoint PanelGroupLoaderFromExtensionPoint}, {@link TabbedPanel TabbedPanel}, and a resizable {@link PanelGroupDialog
42
 * PanelGroupDialog}.
43
 * </p>
44
 * 
45
 * @version 16/10/2007
46
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es)
47
 */
48
public class Test2ButtonsPanel {
49
	/**
50
	 * <p>Element for the interface.</p>
51
	 */
52
	private static JFrame jFrame;
53

  
54
	/**
55
	 * <p>
56
	 * Test method for the Test2ButtonsPanel.
57
	 * </p>
58
	 * 
59
	 * @param args
60
	 *            optional arguments
61
	 */
62
	public static void main(String[] args) {
63
		try {
64
			// Objects creation
65
			jFrame = new JFrame();
66

  
67
			Samples_ExtensionPointsOfIPanels.loadSample();
68

  
69
			PanelGroupManager manager = PanelGroupManager.getManager();
70
			manager.registerPanelGroup(TabbedPanel.class);
71
			manager.setDefaultType(TabbedPanel.class);
72

  
73
			TabbedPanel panelGroup = (TabbedPanel) manager.getPanelGroup(Samples_ExtensionPointsOfIPanels.REFERENCE1);
74

  
75
			PanelGroupLoaderFromExtensionPoint loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT1_NAME);
76

  
77
			// Creates the IWindow
78
			PanelGroupDialog panelGroupDialog = new PanelGroupDialog(Samples_ExtensionPointsOfIPanels.REFERENCE1_NAME, "Panels with Buttons", 800, 650, (byte)WindowInfo.RESIZABLE, panelGroup);
79

  
80
			// Begin: Test the normal load
81
			panelGroupDialog.loadPanels(loader);
82
			// End: Test the normal load
83

  
84
			panelGroupDialog.addButtonPressedListener(new ButtonsPanelListener() {
85
				/*
86
				 * @see org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener#actionButtonPressed(org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent)
87
				 */
88
				public void actionButtonPressed(ButtonsPanelEvent e) {
89
					switch (e.getButton()) {
90
						case ButtonsPanel.BUTTON_ACCEPT:
91
							System.out.println("Accept Button pressed.");
92
							hideJFrame();
93
							System.exit(0);
94
							break;
95
						case ButtonsPanel.BUTTON_CANCEL:
96
							System.out.println("Cancel Button pressed.");
97
							hideJFrame();
98
							System.exit(0);
99
							break;
100
						case ButtonsPanel.BUTTON_APPLY:
101
							System.out.println("Apply Button pressed.");
102
							break;
103
					}
104
				}
105
			});
106

  
107
			jFrame.setTitle("Test resizable PanelGroupDialog with tabs and using PanelGroupLoaderFromExtensionPoint");
108
		    jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
109
		    jFrame.setSize(panelGroupDialog.getPreferredSize());
110
		    jFrame.getContentPane().add(panelGroupDialog);
111

  
112
			jFrame.setVisible(true);
113

  
114
		} catch (BaseException bE) {
115
			System.out.println(bE.getLocalizedMessageStack());
116
		} catch (Exception e) {
117
			e.printStackTrace();
118
		}
119
	}
120

  
121
	/**
122
	 * <p>Hides the {@link JFrame JFrame}, hiding the graphical interface.</p>
123
	 */
124
	private static void hideJFrame() {
125
		jFrame.setVisible(false);
126
	}
127
}
tags/v2_0_0_Build_2063/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/Test2TreePanel.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.app.panelGroup;
21

  
22
import javax.swing.JFrame;
23

  
24
import org.gvsig.gui.beans.panelGroup.PanelGroupManager;
25
import org.gvsig.gui.beans.panelGroup.treePanel.TreePanel;
26
import org.gvsig.tools.exception.BaseException;
27

  
28
import org.gvsig.app.panelGroup.loaders.PanelGroupLoaderFromExtensionPoint;
29
import org.gvsig.app.panelGroup.samples.Samples_ExtensionPointsOfIPanels;
30

  
31
/**
32
 * <p>Tests the creation of a {@link TreePanel TreePanel} object using {@link PanelGroupLoaderFromExtensionPoint PanelGroupLoaderFromExtensionPoint} .</p>
33
 * 
34
 * @version 17/10/2007
35
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
36
 */
37
public class Test2TreePanel {
38
	private static JFrame jFrame;
39
	private static TreePanel panelGroup;
40
	
41
	/**
42
	 * <p>Test method for the Test2TreePanel.</p>
43
	 * 
44
	 * @param args optional arguments
45
	 */
46
	public static void main(String[] args) {
47
		try {
48
			Samples_ExtensionPointsOfIPanels.loadSample();
49

  
50
			PanelGroupManager manager = PanelGroupManager.getManager();
51
			manager.registerPanelGroup(TreePanel.class);
52
			manager.setDefaultType(TreePanel.class);
53

  
54
			panelGroup = (TreePanel) manager.getPanelGroup(Samples_ExtensionPointsOfIPanels.REFERENCE2);
55
			PanelGroupLoaderFromExtensionPoint loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT2_NAME);
56

  
57
			// Begin: Test the normal load
58
			panelGroup.loadPanels(loader);
59
			// End: Test the normal load
60

  
61
			// Objects creation
62
			jFrame = new JFrame();
63
			jFrame.setTitle("Test TreePanel using PanelGroupLoaderFromExtensionPoint");
64
		    jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
65
		    jFrame.setSize(panelGroup.getPreferredSize());
66
		    jFrame.getContentPane().add(panelGroup);
67
		    
68
			jFrame.setVisible(true);
69
			
70
		} catch (BaseException e) {
71
			System.out.println(e.getLocalizedMessageStack());
72
		} catch (Exception e) {
73
			e.printStackTrace();
74
		}
75
	}
76
}
tags/v2_0_0_Build_2063/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/Test3ButtonsPanel.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.app.panelGroup;
21

  
22
import javax.swing.JFrame;
23

  
24
import org.gvsig.gui.beans.buttonspanel.ButtonsPanel;
25
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent;
26
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener;
27
import org.gvsig.gui.beans.panelGroup.PanelGroupManager;
28
import org.gvsig.gui.beans.panelGroup.loaders.PanelGroupLoaderFromList;
29
import org.gvsig.gui.beans.panelGroup.treePanel.TreePanel;
30
import org.gvsig.tools.exception.BaseException;
31

  
32
import org.gvsig.andami.ui.mdiManager.WindowInfo;
33
import org.gvsig.app.panelGroup.samples.Samples_ExtensionPointsOfIPanels;
34

  
35
/** 
36
 * <p>Tests {@link PanelGroupDialog PanelGroupDialog}.</p>
37
 * <p>Tests {@link PanelGroupManager PanelGroupManager}, {@link PanelGroupLoaderFromList PanelGroupLoaderFromList}, 
38
 *  {@link TreePanel TreePanel}, and a resizable {@link PanelGroupDialog PanelGroupDialog}.</p>
39
 * 
40
 * @version 22/10/2007
41
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
42
 */
43
public class Test3ButtonsPanel {
44
	/**
45
	 * <p>Element for the interface.</p>
46
	 */
47
	private static JFrame jFrame;
48
	private static TreePanel panelGroup;
49

  
50
	/**
51
	 * <p>Test method for the Test3ButtonsPanel.</p>
52
	 * 
53
	 * @param args optional arguments
54
	 */
55
	public static void main(String[] args) {
56
		try {
57
			// Objects creation
58
			jFrame = new JFrame();
59

  
60
			PanelGroupManager manager = PanelGroupManager.getManager();
61
			manager.registerPanelGroup(TreePanel.class);
62
			manager.setDefaultType(TreePanel.class);
63

  
64
			panelGroup = (TreePanel) manager.getPanelGroup(Samples_ExtensionPointsOfIPanels.REFERENCE1);
65
			
66
			PanelGroupLoaderFromList loader = new PanelGroupLoaderFromList(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINTS1_CLASSES);
67

  
68
			// Creates the IWindow
69
			PanelGroupDialog panelGroupDialog = new PanelGroupDialog(Samples_ExtensionPointsOfIPanels.REFERENCE1_NAME, "Panel with Buttons", 800, 650, (byte)WindowInfo.RESIZABLE, panelGroup);
70
			
71
			// Begin: Test the normal load
72
			panelGroupDialog.loadPanels(loader);
73
			// End: Test the normal load
74

  
75
			panelGroupDialog.addButtonPressedListener(new ButtonsPanelListener() {
76
				/*
77
				 * @see org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener#actionButtonPressed(org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent)
78
				 */
79
				public void actionButtonPressed(ButtonsPanelEvent e) {
80
					switch (e.getButton()) {
81
						case ButtonsPanel.BUTTON_ACCEPT:
82
							System.out.println("Accept Button pressed.");
83
							hideJFrame();
84
							System.exit(0);
85
							break;
86
						case ButtonsPanel.BUTTON_CANCEL:
87
							System.out.println("Cancel Button pressed.");
88
							hideJFrame();
89
							System.exit(0);
90
							break;
91
						case ButtonsPanel.BUTTON_APPLY:
92
							System.out.println("Apply Button pressed.");
93
							break;
94
					}
95
				}
96
			});
97
			
98
			jFrame.setTitle("Test resizable PanelGroupDialog with tree and using PanelGroupLoaderFromList");
99
		    jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
100
		    jFrame.setSize(panelGroupDialog.getPreferredSize());
101
		    jFrame.getContentPane().add(panelGroupDialog);
102
		    
103
			jFrame.setVisible(true);			
104
		} catch (BaseException bE) {
105
			System.out.println(bE.getLocalizedMessageStack());
106
		} catch (Exception e) {
107
			e.printStackTrace();
108
		}
109
	}
110
	
111
	/**
112
	 * <p>Hides the {@link JFrame JFrame}, hiding the graphical interface.</p>
113
	 */
114
	private static void hideJFrame() {
115
		jFrame.setVisible(false);
116
	}
117
}
tags/v2_0_0_Build_2063/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/Test1ButtonsPanelWithExceptionsMessage.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.app.panelGroup;
21

  
22
import javax.swing.JFrame;
23

  
24
import org.gvsig.gui.beans.buttonspanel.ButtonsPanel;
25
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent;
26
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener;
27
import org.gvsig.gui.beans.panelGroup.PanelGroupManager;
28
import org.gvsig.gui.beans.panelGroup.loaders.PanelGroupLoaderFromList;
29
import org.gvsig.gui.beans.panelGroup.tabbedPanel.TabbedPanel;
30
import org.gvsig.tools.exception.BaseException;
31

  
32
import org.gvsig.andami.ui.mdiManager.WindowInfo;
33
import org.gvsig.app.panelGroup.samples.Samples_ExtensionPointsOfIPanels;
34

  
35
/**
36
 * <p>
37
 * Test method for the Test1ButtonsPanelWithExceptionsMessage.
38
 * </p>
39
 * <p>
40
 * Tests the message dialog caused by the exceptions produced during the loading
41
 * of panels, using {@link PanelGroupManager PanelGroupManager},
42
 * {@link PanelGroupLoaderFromList PanelGroupLoaderFromList},
43
 * {@link TabbedPanel TabbedPanel}, and a resizable {@link PanelGroupDialog
44
 * PanelGroupDialog}.
45
 * </p>
46
 * 
47
 * @version 17/12/2007
48
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es)
49
 */
50
public class Test1ButtonsPanelWithExceptionsMessage {
51
	/**
52
	 * <p>Element for the interface.</p>
53
	 */
54
	private static JFrame jFrame;
55

  
56
	/**
57
	 * <p>
58
	 * Test method for the Test1ButtonsPanelWithExceptionsMessage.
59
	 * </p>
60
	 * 
61
	 * @param args
62
	 *            optional arguments
63
	 */
64
	public static void main(String[] args) {
65
		try {
66
			// Objects creation
67
			jFrame = new JFrame();
68

  
69
			PanelGroupManager manager = PanelGroupManager.getManager();
70
			manager.registerPanelGroup(TabbedPanel.class);
71
			manager.setDefaultType(TabbedPanel.class);
72

  
73
			TabbedPanel panelGroup = (TabbedPanel) manager.getPanelGroup(Samples_ExtensionPointsOfIPanels.REFERENCE3);
74

  
75
			PanelGroupLoaderFromList loader = new PanelGroupLoaderFromList(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINTS10_CLASSES);
76

  
77
			// Creates the IWindow
78
			PanelGroupDialog panelGroupDialog = new PanelGroupDialog(Samples_ExtensionPointsOfIPanels.REFERENCE3_NAME, "Panels with Buttons", 800, 650, (byte)WindowInfo.RESIZABLE, panelGroup);
79

  
80
			// Begin: Test the normal load
81
			panelGroupDialog.loadPanels(loader);
82
			// End: Test the normal load
83

  
84
			panelGroupDialog.addButtonPressedListener(new ButtonsPanelListener() {
85
				/*
86
				 * @see org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener#actionButtonPressed(org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent)
87
				 */
88
				public void actionButtonPressed(ButtonsPanelEvent e) {
89
					switch (e.getButton()) {
90
						case ButtonsPanel.BUTTON_ACCEPT:
91
							System.out.println("Accept Button pressed.");
92
							hideJFrame();
93
							System.exit(0);
94
							break;
95
						case ButtonsPanel.BUTTON_CANCEL:
96
							System.out.println("Cancel Button pressed.");
97
							hideJFrame();
98
							System.exit(0);
99
							break;
100
						case ButtonsPanel.BUTTON_APPLY:
101
							System.out.println("Apply Button pressed.");
102
							break;
103
					}
104
				}
105
			});
106

  
107
			jFrame.setTitle("Test resizable PanelGroupDialog with tabs and using PanelGroupLoaderFromList");
108
		    jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
109
		    jFrame.setSize(panelGroupDialog.getPreferredSize());
110
		    jFrame.getContentPane().add(panelGroupDialog);
111

  
112
			jFrame.setVisible(true);
113

  
114
		} catch (BaseException bE) {
115
			System.out.println(bE.getLocalizedMessageStack());
116
		} catch (Exception e) {
117
			e.printStackTrace();
118
		}
119
	}
120

  
121
	/**
122
	 * <p>Hides the {@link JFrame JFrame}, hiding the graphical interface.</p>
123
	 */
124
	private static void hideJFrame() {
125
		jFrame.setVisible(false);
126
	}
127
}
tags/v2_0_0_Build_2063/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/Test4ButtonsPanel.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.app.panelGroup;
21

  
22
import javax.swing.JFrame;
23

  
24
import org.gvsig.gui.beans.buttonspanel.ButtonsPanel;
25
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent;
26
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener;
27
import org.gvsig.gui.beans.panelGroup.PanelGroupManager;
28
import org.gvsig.gui.beans.panelGroup.treePanel.TreePanel;
29
import org.gvsig.tools.exception.BaseException;
30

  
31
import org.gvsig.andami.ui.mdiManager.WindowInfo;
32
import org.gvsig.app.panelGroup.loaders.PanelGroupLoaderFromExtensionPoint;
33
import org.gvsig.app.panelGroup.samples.Samples_ExtensionPointsOfIPanels;
34

  
35
/**
36
 * <p>Tests {@link PanelGroupDialog PanelGroupDialog}.</p>
37
 * <p>Tests {@link PanelGroupManager PanelGroupManager}, {@link PanelGroupLoaderFromExtensionPoint PanelGroupLoaderFromExtensionPoint}, 
38
 *  {@link TreePanel TreePanel}, and a resizable {@link PanelGroupDialog PanelGroupDialog}.</p>
39
 * 
40
 * @version 22/10/2007
41
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
42
 */
43
public class Test4ButtonsPanel {
44
	/**
45
	 * <p>Element for the interface.</p>
46
	 */
47
	private static JFrame jFrame;
48
	private static TreePanel panelGroup;
49

  
50
	/**
51
	 * <p>Test method for the Test4ButtonsPanel.</p>
52
	 * <p>Tests {@link PanelGroupManager PanelGroupManager}, {@link PanelGroupLoaderFromExtensionPoint PanelGroupLoaderFromExtensionPoint}, 
53
	 *  {@link TreePanel TreePanel}, and a resizable {@link PanelGroupDialog PanelGroupDialog}.</p>
54
	 * 
55
	 * @param args optional arguments
56
	 */
57
	public static void main(String[] args) {
58
		try {
59
			// Objects creation
60
			jFrame = new JFrame();
61

  
62
			Samples_ExtensionPointsOfIPanels.loadSample();
63

  
64
			PanelGroupManager manager = PanelGroupManager.getManager();
65
			manager.registerPanelGroup(TreePanel.class);
66
			manager.setDefaultType(TreePanel.class);
67

  
68
			panelGroup = (TreePanel) manager.getPanelGroup(Samples_ExtensionPointsOfIPanels.REFERENCE1);
69

  
70
			PanelGroupLoaderFromExtensionPoint loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT1_NAME);
71
			
72
			// Creates the IWindow
73
			PanelGroupDialog panelGroupDialog = new PanelGroupDialog(Samples_ExtensionPointsOfIPanels.REFERENCE1_NAME, "Panel with Buttons", 150, 150, (byte)WindowInfo.RESIZABLE, panelGroup);
74

  
75
			// Begin: Test the normal load
76
			panelGroupDialog.loadPanels(loader);
77
			// End: Test the normal load
78
			
79
			panelGroupDialog.addButtonPressedListener(new ButtonsPanelListener() {
80
				/*
81
				 * @see org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener#actionButtonPressed(org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent)
82
				 */
83
				public void actionButtonPressed(ButtonsPanelEvent e) {
84
					switch (e.getButton()) {
85
						case ButtonsPanel.BUTTON_ACCEPT:
86
							System.out.println("Accept Button pressed.");
87
							hideJFrame();
88
							System.exit(0);
89
							break;
90
						case ButtonsPanel.BUTTON_CANCEL:
91
							System.out.println("Cancel Button pressed.");
92
							hideJFrame();
93
							System.exit(0);
94
							break;
95
						case ButtonsPanel.BUTTON_APPLY:
96
							System.out.println("Apply Button pressed.");
97
							break;
98
					}
99
				}
100
			});
101

  
102
			jFrame.setTitle("Test resizable PanelGroupDialog with tree and using PanelGroupLoaderFromExtensionPoint");
103
		    jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
104
		    jFrame.setSize(panelGroupDialog.getPreferredSize());
105
		    jFrame.getContentPane().add(panelGroupDialog);
106
		    
107
			jFrame.setVisible(true);	
108
		} catch (BaseException bE) {
109
			System.out.println(bE.getLocalizedMessageStack());
110
		} catch (Exception e) {
111
			e.printStackTrace();
112
		}
113
	}
114
	
115
	/**
116
	 * <p>Hides the {@link JFrame JFrame}, hiding the graphical interface.</p>
117
	 */
118
	private static void hideJFrame() {
119
		jFrame.setVisible(false);
120
	}
121
}
tags/v2_0_0_Build_2063/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/Test2ButtonsPanelWithExceptionsMessage.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.app.panelGroup;
21

  
22
import javax.swing.JFrame;
23

  
24
import org.gvsig.gui.beans.buttonspanel.ButtonsPanel;
25
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent;
26
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener;
27
import org.gvsig.gui.beans.panelGroup.PanelGroupManager;
28
import org.gvsig.gui.beans.panelGroup.tabbedPanel.TabbedPanel;
29
import org.gvsig.tools.exception.BaseException;
30

  
31
import org.gvsig.andami.ui.mdiManager.WindowInfo;
32
import org.gvsig.app.panelGroup.loaders.PanelGroupLoaderFromExtensionPoint;
33
import org.gvsig.app.panelGroup.samples.Samples_ExtensionPointsOfIPanels;
34

  
35
/**
36
 * <p>Test method for the Test2ButtonsPanelWithExceptionsMessage.</p>
37
 * <p>Tests the message dialog caused by the exceptions produced during the loading of panels, using {@link PanelGroupManager PanelGroupManager},
38
 *  {@link PanelGroupLoaderFromExtensionPoint PanelGroupLoaderFromExtensionPoint}, {@link TabbedPanel TabbedPanel}, and a resizable {@link PanelGroupDialog PanelGroupDialog}.</p>
39
 * 
40
 * @version 17/12/2007
41
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
42
 */
43
public class Test2ButtonsPanelWithExceptionsMessage {
44
	/**
45
	 * <p>Element for the interface.</p>
46
	 */
47
	private static JFrame jFrame;
48

  
49
	/**
50
	 * <p>Test method for the Test2ButtonsPanelWithExceptionsMessage.</p>
51
	 * 
52
	 * @param args optional arguments
53
	 */
54
	public static void main(String[] args) {
55
		try {
56
			// Objects creation
57
			jFrame = new JFrame();
58

  
59
			Samples_ExtensionPointsOfIPanels.loadSample();
60

  
61
			PanelGroupManager manager = PanelGroupManager.getManager();
62
			manager.registerPanelGroup(TabbedPanel.class);
63
			manager.setDefaultType(TabbedPanel.class);
64

  
65
			TabbedPanel panelGroup = (TabbedPanel) manager.getPanelGroup(Samples_ExtensionPointsOfIPanels.REFERENCE3);
66

  
67
			PanelGroupLoaderFromExtensionPoint loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT10_NAME);
68

  
69
			// Creates the IWindow
70
			PanelGroupDialog panelGroupDialog = new PanelGroupDialog(Samples_ExtensionPointsOfIPanels.REFERENCE3_NAME, "Panels with Buttons", 800, 650, (byte)WindowInfo.RESIZABLE, panelGroup);
71
			
72
			// Begin: Test the normal load
73
			panelGroupDialog.loadPanels(loader);
74
			// End: Test the normal load
75

  
76
			panelGroupDialog.addButtonPressedListener(new ButtonsPanelListener() {
77
				/*
78
				 * @see org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener#actionButtonPressed(org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent)
79
				 */
80
				public void actionButtonPressed(ButtonsPanelEvent e) {
81
					switch (e.getButton()) {
82
						case ButtonsPanel.BUTTON_ACCEPT:
83
							System.out.println("Accept Button pressed.");
84
							hideJFrame();
85
							System.exit(0);
86
							break;
87
						case ButtonsPanel.BUTTON_CANCEL:
88
							System.out.println("Cancel Button pressed.");
89
							hideJFrame();
90
							System.exit(0);
91
							break;
92
						case ButtonsPanel.BUTTON_APPLY:
93
							System.out.println("Apply Button pressed.");
94
							break;
95
					}
96
				}
97
			});
98

  
99
			jFrame.setTitle("Test resizable PanelGroupDialog with tabs and using PanelGroupLoaderFromExtensionPoint");
100
		    jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
101
		    jFrame.setSize(panelGroupDialog.getPreferredSize());
102
		    jFrame.getContentPane().add(panelGroupDialog);
103
		    
104
			jFrame.setVisible(true);
105
			
106
		} catch (BaseException bE) {
107
			System.out.println(bE.getLocalizedMessageStack());
108
		} catch (Exception e) {
109
			e.printStackTrace();
110
		}
111
	}
112
	
113
	/**
114
	 * <p>Hides the {@link JFrame JFrame}, hiding the graphical interface.</p>
115
	 */
116
	private static void hideJFrame() {
117
		jFrame.setVisible(false);
118
	}
119
}
tags/v2_0_0_Build_2063/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/Test5ButtonsPanel.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.app.panelGroup;
21

  
22
import javax.swing.JFrame;
23

  
24
import org.gvsig.gui.beans.buttonspanel.ButtonsPanel;
25
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent;
26
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener;
27
import org.gvsig.gui.beans.panelGroup.PanelGroupManager;
28
import org.gvsig.gui.beans.panelGroup.loaders.PanelGroupLoaderFromList;
29
import org.gvsig.gui.beans.panelGroup.tabbedPanel.TabbedPanel;
30
import org.gvsig.tools.exception.BaseException;
31

  
32
import org.gvsig.app.panelGroup.samples.Samples_ExtensionPointsOfIPanels;
33

  
34
/**
35
 * <p>Tests {@link PanelGroupDialog PanelGroupDialog}.</p>
36
 * <p>Tests {@link PanelGroupManager PanelGroupManager}, {@link PanelGroupLoaderFromList PanelGroupLoaderFromList}, 
37
 *  {@link TabbedPanel TabbedPanel}, and a non resizable {@link PanelGroupDialog PanelGroupDialog}.</p>
38
 * 
39
 * @version 19/10/2007
40
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
41
 */
42
public class Test5ButtonsPanel {
43
	/**
44
	 * <p>Element for the interface.</p>
45
	 */
46
	private static JFrame jFrame;
47

  
48
	/**
49
	 * <p>Test method for the Test5ButtonsPanel.</p>
50
	 * 
51
	 * @param args optional arguments
52
	 */
53
	public static void main(String[] args) {
54
		try {
55
			// Objects creation
56
			jFrame = new JFrame();
57

  
58
			PanelGroupManager manager = PanelGroupManager.getManager();
59
			manager.registerPanelGroup(TabbedPanel.class);
60
			manager.setDefaultType(TabbedPanel.class);
61

  
62
			TabbedPanel panelGroup = (TabbedPanel) manager.getPanelGroup(Samples_ExtensionPointsOfIPanels.REFERENCE1);
63
			
64
			PanelGroupLoaderFromList loader = new PanelGroupLoaderFromList(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINTS1_CLASSES);
65
			
66
			// Creates the IWindow
67
			PanelGroupDialog panelGroupDialog = new PanelGroupDialog(Samples_ExtensionPointsOfIPanels.REFERENCE1_NAME, "Panel with Buttons", 800, 650, (byte)0, panelGroup);
68

  
69
			// Begin: Test the normal load
70
			panelGroupDialog.loadPanels(loader);
71
			// End: Test the normal load
72
			
73
			panelGroupDialog.addButtonPressedListener(new ButtonsPanelListener() {
74
				/*
75
				 * @see org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener#actionButtonPressed(org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent)
76
				 */
77
				public void actionButtonPressed(ButtonsPanelEvent e) {
78
					switch (e.getButton()) {
79
						case ButtonsPanel.BUTTON_ACCEPT:
80
							System.out.println("Accept Button pressed.");
81
							hideJFrame();
82
							System.exit(0);
83
							break;
84
						case ButtonsPanel.BUTTON_CANCEL:
85
							System.out.println("Cancel Button pressed.");
86
							hideJFrame();
87
							System.exit(0);
88
							break;
89
						case ButtonsPanel.BUTTON_APPLY:
90
							System.out.println("Apply Button pressed.");
91
							break;
92
					}
93
				}
94
			});
95
			
96
			jFrame.setTitle("Test Non Resizable PanelGroupDialog with tabs and using PanelGroupLoaderFromList");
97
		    jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
98
		    jFrame.setSize(panelGroupDialog.getPreferredSize());
99
		    jFrame.getContentPane().add(panelGroupDialog);
100
		    
101
		    jFrame.setResizable(false);
102
			jFrame.setVisible(true);
103
			
104
		} catch (BaseException bE) {
105
			System.out.println(bE.getLocalizedMessageStack());
106
		} catch (Exception e) {
107
			e.printStackTrace();
108
		}
109
	}
110

  
111
	/**
112
	 * <p>Hides the {@link JFrame JFrame}, hiding the graphical interface.</p>
113
	 */
114
	private static void hideJFrame() {
115
		jFrame.setVisible(false);
116
	}
117
}
tags/v2_0_0_Build_2063/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/Test3ButtonsPanelWithExceptionsMessage.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.app.panelGroup;
21

  
22
import javax.swing.JFrame;
23

  
24
import org.gvsig.gui.beans.buttonspanel.ButtonsPanel;
25
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent;
26
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener;
27
import org.gvsig.gui.beans.panelGroup.PanelGroupManager;
28
import org.gvsig.gui.beans.panelGroup.loaders.PanelGroupLoaderFromList;
29
import org.gvsig.gui.beans.panelGroup.treePanel.TreePanel;
30
import org.gvsig.tools.exception.BaseException;
31

  
32
import org.gvsig.andami.ui.mdiManager.WindowInfo;
33
import org.gvsig.app.panelGroup.samples.Samples_ExtensionPointsOfIPanels;
34

  
35
/**
36
 * <p>Test method for the Test1ButtonsPanelWithExceptionsMessage.</p>
37
 * <p>Tests the message dialog caused by the exceptions produced during the loading of panels, using {@link PanelGroupManager PanelGroupManager},
38
 *  {@link PanelGroupLoaderFromList PanelGroupLoaderFromList}, {@link TreePanel TreePanel}, and a resizable {@link PanelGroupDialog PanelGroupDialog}.</p>
39
 * 
40
 * @version 17/12/2007
41
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
42
 */
43
public class Test3ButtonsPanelWithExceptionsMessage {
44
	/**
45
	 * <p>Element for the interface.</p>
46
	 */
47
	private static JFrame jFrame;
48
	private static TreePanel panelGroup;
49

  
50
	/**
51
	 * <p>Test method for the Test3ButtonsPanelWithExceptionsMessage.</p>
52
	 * 
53
	 * @param args optional arguments
54
	 */
55
	public static void main(String[] args) {
56
		try {
57
			// Objects creation
58
			jFrame = new JFrame();
59

  
60
			PanelGroupManager manager = PanelGroupManager.getManager();
61
			manager.registerPanelGroup(TreePanel.class);
62
			manager.setDefaultType(TreePanel.class);
63

  
64
			panelGroup = (TreePanel) manager.getPanelGroup(Samples_ExtensionPointsOfIPanels.REFERENCE3);
65
			
66
			PanelGroupLoaderFromList loader = new PanelGroupLoaderFromList(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINTS10_CLASSES);
67

  
68
			// Creates the IWindow
69
			PanelGroupDialog panelGroupDialog = new PanelGroupDialog(Samples_ExtensionPointsOfIPanels.REFERENCE3_NAME, "Panel with Buttons", 800, 650, (byte)WindowInfo.RESIZABLE, panelGroup);
70
			
71
			// Begin: Test the normal load
72
			panelGroupDialog.loadPanels(loader);
73
			// End: Test the normal load
74

  
75
			panelGroupDialog.addButtonPressedListener(new ButtonsPanelListener() {
76
				/*
77
				 * @see org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener#actionButtonPressed(org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent)
78
				 */
79
				public void actionButtonPressed(ButtonsPanelEvent e) {
80
					switch (e.getButton()) {
81
						case ButtonsPanel.BUTTON_ACCEPT:
82
							System.out.println("Accept Button pressed.");
83
							hideJFrame();
84
							System.exit(0);
85
							break;
86
						case ButtonsPanel.BUTTON_CANCEL:
87
							System.out.println("Cancel Button pressed.");
88
							hideJFrame();
89
							System.exit(0);
90
							break;
91
						case ButtonsPanel.BUTTON_APPLY:
92
							System.out.println("Apply Button pressed.");
93
							break;
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff