Revision 38262

View differences:

tags/v2_0_0_Build_2047/applications/appgvSIG/src-test/org/gvsig/app/gui/filter/TestFilterExpressionFromWhereIsEmpty_Method.java
1
package org.gvsig.app.gui.filter;
2

  
3
import junit.framework.TestCase;
4

  
5

  
6
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
7
 *
8
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
9
 *
10
 * This program is free software; you can redistribute it and/or
11
 * modify it under the terms of the GNU General Public License
12
 * as published by the Free Software Foundation; either version 2
13
 * of the License, or (at your option) any later version.
14
 *
15
 * This program is distributed in the hope that it will be useful,
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 * GNU General Public License for more details.
19
 *
20
 * You should have received a copy of the GNU General Public License
21
 * along with this program; if not, write to the Free Software
22
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
23
 *
24
 * For more information, contact:
25
 *
26
 *  Generalitat Valenciana
27
 *   Conselleria d'Infraestructures i Transport
28
 *   Av. Blasco Ib??ez, 50
29
 *   46010 VALENCIA
30
 *   SPAIN
31
 *
32
 *      +34 963862235
33
 *   gvsig@gva.es
34
 *      www.gvsig.gva.es
35
 *
36
 *    or
37
 *
38
 *   IVER T.I. S.A
39
 *   Salamanca 50
40
 *   46005 Valencia
41
 *   Spain
42
 *
43
 *   +34 963163400
44
 *   dac@iver.es
45
 */
46

  
47
/**
48
 * @author Pablo Piqueras Bartolom? (p_queras@hotmail.com)
49
 */
50
public class TestFilterExpressionFromWhereIsEmpty_Method extends TestCase {
51
	/*
52
	 *  (non-Javadoc)
53
	 * @see junit.framework.TestCase#setUp()
54
	 */
55
	protected void setUp() throws Exception {
56
		super.setUp();
57
	}
58

  
59
	/*
60
	 *  (non-Javadoc)
61
	 * @see junit.framework.TestCase#tearDown()
62
	 */
63
	protected void tearDown() throws Exception {
64
		super.tearDown();
65
	}	
66

  
67
	/**
68
	 * Test 1 (valid)
69
	 */
70
	public void test1() {
71
		String expression = new String("select * from 'gdbms144426c_10fc90fa1aa__7c18' where ;");
72
		
73
		System.out.println("? Es vac?o el filtro en: " + expression + " ? ");
74

  
75
		if (this.filterExpressionFromWhereIsEmpty(expression))
76
			System.out.println("Si.");
77
		else
78
			System.out.println("No.");
79
	}
80
	
81
	/**
82
	 * Test 2 (invalid)
83
	 */
84
	public void test2() {
85
		String expression = new String("select * from 'gdbms158fd70_10fc92ee61e__7c18' where layer < '61';");
86
		
87
		System.out.println("? Es vac?o el filtro en: " + expression + " ? ");
88

  
89
		if (this.filterExpressionFromWhereIsEmpty(expression))
90
			System.out.println("Si.");
91
		else
92
			System.out.println("No.");
93
	}	
94
	
95
	/**
96
	 * Returns true if the WHERE subconsultation of the filterExpression is empty ("")
97
	 * 
98
	 * @param expression An string
99
	 * @return A boolean value 
100
	 */
101
	private boolean filterExpressionFromWhereIsEmpty(String expression) {
102
		String subExpression = expression.trim();
103
		int pos;	
104
		
105
		// Remove last ';' if exists
106
		if (subExpression.charAt(subExpression.length() -1) == ';')
107
			subExpression = subExpression.substring(0, subExpression.length() -1).trim();
108
		
109
		// If there is no 'where' clause
110
		if ((pos = subExpression.indexOf("where")) == -1)
111
			return false;
112
		
113
		// If there is no subexpression in the WHERE clause -> true
114
		subExpression = subExpression.substring(pos + 5, subExpression.length()).trim(); // + 5 is the length of 'where'
115
		if ( subExpression.length() == 0 )
116
			return true;
117
		else
118
			return false;
119
	}
120
}
0 121

  
tags/v2_0_0_Build_2047/applications/appgvSIG/src-test/org/gvsig/app/project/ProjectTest.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2005 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
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41

  
42
/* CVS MESSAGES:
43
*
44
* $Id$
45
* $Log$
46
* Revision 1.1  2006-11-08 10:57:55  jaume
47
* remove unecessary imports
48
*
49
*
50
*/
51
package org.gvsig.app.project;
52

  
53
import junit.framework.TestCase;
54

  
55
//TODO comentado para que compile
56
public class ProjectTest extends TestCase {
57
	static final String projectFile1 = "test/test.gvp";
58
	static final String projectFile2 = "test/test.gvp";
59
	static final String projectFile3 = null;
60
	static final String projectFile4 = null;
61

  
62
	static final String driversPath = "lib-test/drivers";
63
	Project p1, p2;
64

  
65
	public void setUp() {
66

  
67
//		LayerFactory.setDriversPath(driversPath);
68
//
69
//		Reader reader;
70
//
71
//		// TODO Install drivers support for testing
72
//		try {
73
//			reader = new FileReader(new File(projectFile1));
74
//
75
//			XmlTag tag = (XmlTag) XmlTag.unmarshal(reader);
76
//			XMLEntity xml=new XMLEntity(tag);
77
//			p1 = Project.createFromXML(xml);
78
//			p2 = Project.createFromXML(xml);
79
//		} catch (Exception e) {
80
//			e.printStackTrace();
81
//		}
82

  
83
	}
84

  
85
//	public void testSignature() {
86
//		try {
87
//			assertTrue(p1.computeSignature() == p2.computeSignature());
88
//		} catch (SaveException e) {}
89
////		assertTrue(p1.equals(p2));
90
//	}
91
}
0 92

  
tags/v2_0_0_Build_2047/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_2047/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/Test2ExceptionsUsingTreePanel.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.treePanel.TreePanel;
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>Tests the loading of layers using a {@link TreePanel TreePanel} object and a {@link PanelGroupLoaderFromExtensionPoint PanelGroupLoaderFromExtensionPoint} loader
34
 * Tests also the managing of the different kind of exceptions which could be launched during this process.</p>
35
 * 
36
 * @version 11/12/2007
37
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
38
 */
39
public class Test2ExceptionsUsingTreePanel extends TestCase {
40
	private TreePanel panelGroup;
41
	private PanelGroupManager manager;
42
	private PanelGroupLoaderFromExtensionPoint loader;
43
	private String validationText;
44
	private String localizedMessage;
45

  
46
	/*
47
	 * (non-Javadoc)
48
	 * @see junit.framework.TestCase#setUp()
49
	 */
50
	protected void setUp() throws Exception {
51
		super.setUp();
52

  
53
		manager = PanelGroupManager.getManager();
54
		manager.registerPanelGroup(TreePanel.class);
55
		manager.setDefaultType(TreePanel.class);
56
		panelGroup = (TreePanel) manager.getPanelGroup(Samples_ExtensionPointsOfIPanels.REFERENCE3);
57
	}
58

  
59
	/*
60
	 * (non-Javadoc)
61
	 * @see junit.framework.TestCase#tearDown()
62
	 */
63
	protected void tearDown() throws Exception {
64
		super.tearDown();
65
		manager.deregisterPanelGroup(TreePanel.class);
66
	}
67
	
68
	/**
69
	 * <p>Test the 'PanelGroup' exceptions </p>
70
	 */
71
	public void test1() {
72
		Samples_ExtensionPointsOfIPanels.loadSample();
73

  
74
		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.";
75

  
76
		try {
77
			System.out.println("----- Test 1 -----");
78
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT4_NAME);
79

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

  
96
		System.out.println("------------------");
97
		fail();
98
	}
99
	
100
	/**
101
	 * <p>Test the 'PanelGroup' exceptions </p>
102
	 */
103
	public void test2() {
104
		validationText = Messages.getText("couldnt_add_some_panel_exception") + "\n  Panel de etiqueta Information_LABEL sin tama?o inicial definido.";
105

  
106
		try {
107
			System.out.println("----- Test 2 -----");
108
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT5_NAME);
109

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

  
126
		System.out.println("------------------");
127
		fail();
128
	}
129
	
130
	/**
131
	 * <p>Test the 'PanelGroup' exceptions </p>
132
	 */
133
	public void test3() {
134
		validationText = Messages.getText("empty_panel_group_exception");
135

  
136
		try {
137
			System.out.println("----- Test 3 -----");
138
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT6_NAME);
139

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

  
156
		System.out.println("------------------");
157
		fail();
158
	}
159
	
160
	/**
161
	 * <p>Test the 'PanelGroup' exceptions </p>
162
	 */
163
	public void test4() {
164
		validationText = Messages.getText("empty_panel_group_gui_exception");
165

  
166
		try {
167
			System.out.println("----- Test 4 -----");
168
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT7_NAME);
169

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

  
186
		System.out.println("------------------");
187
		fail();
188
	}
189
	
190
	/**
191
	 * <p>Test the 'PanelGroup' exceptions </p>
192
	 */
193
	public void test5() {
194
		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");
195

  
196
		try {
197
			System.out.println("----- Test 5 -----");
198
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT8_NAME);
199

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

  
216
		System.out.println("------------------");
217
		fail();
218
	}
219
	
220
	/**
221
	 * <p>Test the 'PanelGroup' exceptions </p>
222
	 */
223
	public void test6() {
224
		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");
225

  
226
		try {
227
			System.out.println("----- Test 6 -----");
228
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT9_NAME);
229

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

  
246
		System.out.println("------------------");
247
		fail();
248
	}
249
	
250
	/**
251
	 * <p>Test the 'PanelGroup' exceptions </p>
252
	 */
253
	public void test7() {
254
		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.";
255

  
256
		try {
257
			System.out.println("----- Test 7 -----");
258
			loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT10_NAME);
259

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

  
276
		System.out.println("------------------");
277
		fail();
278
	}
279
}
tags/v2_0_0_Build_2047/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/Test2TabbedPanel.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.tabbedPanel.TabbedPanel;
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 TabbedPanel TabbedPanel} object using {@link PanelGroupLoaderFromExtensionPoint PanelGroupLoaderFromExtensionPoint} .</p>
33
 * 
34
 * @version 16/10/2007
35
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
36
 */
37
public class Test2TabbedPanel {
38
	/**
39
	 * <p>Test method for the Test2TabbedPanel.</p>
40
	 * 
41
	 * @param args optional arguments
42
	 */
43
	public static void main(String[] args) {
44
		try {
45
			Samples_ExtensionPointsOfIPanels.loadSample();
46
			
47
			PanelGroupManager manager = PanelGroupManager.getManager();
48
			manager.registerPanelGroup(TabbedPanel.class);
49
			manager.setDefaultType(TabbedPanel.class);
50

  
51
			TabbedPanel panelGroup = (TabbedPanel) manager.getPanelGroup(Samples_ExtensionPointsOfIPanels.REFERENCE2);
52
			PanelGroupLoaderFromExtensionPoint loader = new PanelGroupLoaderFromExtensionPoint(Samples_ExtensionPointsOfIPanels.EXTENSIONPOINT2_NAME);
53

  
54
			// Begin: Test the normal load
55
			panelGroup.loadPanels(loader);
56
			// End: Test the normal load
57

  
58
			// Objects creation
59
			JFrame jFrame = new JFrame();
60
			jFrame.setTitle("Test TabbedPanel using PanelGroupLoaderFromExtensionPoint");
61
		    jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
62
		    jFrame.setSize(panelGroup.getPreferredSize());
63
		    jFrame.getContentPane().add(panelGroup);
64
		    
65
			jFrame.setVisible(true);
66
			
67
		} catch (BaseException bE) {
68
			System.out.println(bE.getLocalizedMessageStack());
69
		} catch (Exception e) {
70
			e.printStackTrace();
71
		}
72
	}
73
}
tags/v2_0_0_Build_2047/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/samples/Samples_ExtensionPointsOfIPanels.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.samples;
21

  
22
import org.gvsig.gui.beans.panelGroup.PanelGroupManager;
23
import org.gvsig.gui.beans.panelGroup.loaders.PanelGroupLoaderFromList;
24
import org.gvsig.gui.beans.panelGroup.panels.AbstractPanel;
25
import org.gvsig.gui.beans.panelGroup.tabbedPanel.TabbedPanel;
26
import org.gvsig.gui.beans.panelGroup.treePanel.TreePanel;
27
import org.gvsig.tools.ToolsLocator;
28
import org.gvsig.tools.extensionpoint.ExtensionPoint;
29
import org.gvsig.tools.extensionpoint.ExtensionPointManager;
30

  
31
import org.gvsig.app.panelGroup.PanelGroupDialog;
32
import org.gvsig.app.panelGroup.loaders.PanelGroupLoaderFromExtensionPoint;
33

  
34
/**
35
 * <p>
36
 * This class has information to create samples to test
37
 * {@link PanelGroupManager PanelGroupManager}, {@link TabbedPanel TabbedPanel},
38
 * {@link TreePanel TreePanel}, {@link AbstractPanel AbstractPanel},
39
 * {@link PanelGroupLoaderUtilities PanelGroupLoaderUtilities},
40
 * {@link PanelGroupLoaderFromList PanelGroupLoaderFromList},
41
 * {@link PanelGroupLoaderFromExtensionPoint PanelGroupLoaderFromExtensionPoint}
42
 * , and {@link PanelGroupDialog PanelGroupDialog}.
43
 * </p>
44
 * 
45
 * @version 16/10/2007
46
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es)
47
 */
48
public class Samples_ExtensionPointsOfIPanels {
49
	public final static String EXTENSIONPOINT1_NAME = "RasterLayerProperties";
50
	public final static String EXTENSIONPOINT2_NAME = "ImaginaryLayerProperties";
51
	public final static String EXTENSIONPOINT3_NAME = "Other tests";
52
	public final static String EXTENSIONPOINT4_NAME = "Test 1 exceptions";
53
	public final static String EXTENSIONPOINT5_NAME = "Test 2 exceptions";
54
	public final static String EXTENSIONPOINT6_NAME = "Test 3 exceptions";
55
	public final static String EXTENSIONPOINT7_NAME = "Test 4 exceptions";
56
	public final static String EXTENSIONPOINT8_NAME = "Test 5 exceptions";
57
	public final static String EXTENSIONPOINT9_NAME = "Test 6 exceptions";
58
	public final static String EXTENSIONPOINT10_NAME = "Test 7 exceptions";
59
	public final static String[] EXTENSIONPOINTS1_NAMES = {"Information", "Bands", "Transparency", "Enhanced", "PanSharpening", "Scale"};
60
	public final static String[] EXTENSIONPOINTS2_NAMES = {"Information", "Transparency", "Scale"};
61
	public final static String[] EXTENSIONPOINTS3_OTHER_NAMES = {"SamplePanelWithoutGroupLabel", "SamplePanelGroupLabelRepeated"};
62
	public final static String[] EXTENSIONPOINTS4_NAMES = {
63
			"SampleInitializingExcetionPanel", "SampleInfoPanel" }; // Test 'ListCouldntLoadPanelFromListException' with any 'Exception'
64
	public final static String[] EXTENSIONPOINTS5_NAMES = {"SampleInfoPanel", "SampleUndefinedPreferredSizeExceptionPanel"}; // Test 'ListCouldntAddPanelException' with a 'PanelWithNoPreferredSizeDefinedException'
65
	public final static String[] EXTENSIONPOINTS6_NAMES = {}; // Test 'ListCouldntAddPanelException' with a 'EmptyPanelGroupException'
66
	public final static String[] EXTENSIONPOINTS7_NAMES = {"SampleInvisiblePanel.class"}; // Test 'ListCouldntAddPanelException' with a 'EmptyPanelGroupGUIException'
67
	public final static String[] EXTENSIONPOINTS8_NAMES = {"SampleInitializingExcetionPanel", "SampleUndefinedPreferredSizeExceptionPanel"}; // Test 'ListCouldntAddPanelException' with a 'PanelWithNoPreferredSizeDefinedException', a 'EmptyPanelGroupException' and a 'ListCouldntLoadPanelFromListException' with any 'Exception'
68
	public final static String[] EXTENSIONPOINTS9_NAMES = {"SampleInvisiblePanel", "SampleInitializingExcetionPanel", "SampleUndefinedPreferredSizeExceptionPanel"}; // Test 'ListCouldntAddPanelException' with a 'PanelWithNoPreferredSizeDefinedException', a 'EmptyPanelGroupGUIException' and a 'ListCouldntLoadPanelFromListException' with any 'Exception'
69
	public final static String[] EXTENSIONPOINTS10_NAMES = {"SampleBandSetupPanel", "SampleInvisiblePanel", "SampleInitializingExcetionPanel", "SampleUndefinedPreferredSizeExceptionPanel"}; // Test 'ListCouldntAddPanelException' with a 'PanelWithNoPreferredSizeDefinedException', a EmptyPanelGroupGUIException and a 'ListCouldntLoadPanelFromListException' with any 'Exception'
70
	public final static Class[] EXTENSIONPOINTS1_CLASSES = {SampleInfoPanel.class, SampleBandSetupPanel.class, SampleTransparencyPanel.class, SampleEnhancedPanel.class, SamplePanSharpeningPanel.class, SampleScalePanel.class};
71
	public final static Class[] EXTENSIONPOINTS2_CLASSES = {SampleInfoPanel.class, SampleTransparencyPanel.class, SampleScalePanel.class};
72
	public final static Class[] OTHER_PANELS_EXTENSIONPOINTS3_CLASSES = {SamplePanelWithoutGroupLabel.class, SamplePanelGroupLabelRepeated.class};
73
	public final static Class[] EXTENSIONPOINTS4_CLASSES = {
74
			SampleInitializingExcetionPanel.class, SampleInfoPanel.class }; // Test 'ListCouldntLoadPanelFromListException' with any 'Exception'
75
	public final static Class[] EXTENSIONPOINTS5_CLASSES = {SampleInfoPanel.class, SampleUndefinedPreferredSizeExceptionPanel.class}; // Test 'ListCouldntAddPanelException' with a 'PanelWithNoPreferredSizeDefinedException'
76
	public final static Class[] EXTENSIONPOINTS6_CLASSES = {}; // Test 'ListCouldntAddPanelException' with a 'EmptyPanelGroupException'
77
	public final static Class[] EXTENSIONPOINTS7_CLASSES = {SampleInvisiblePanel.class}; // Test 'ListCouldntAddPanelException' with a 'EmptyPanelGroupGUIException'
78
	public final static Class[] EXTENSIONPOINTS8_CLASSES = {SampleInitializingExcetionPanel.class, SampleUndefinedPreferredSizeExceptionPanel.class}; // Test 'ListCouldntAddPanelException' with a 'PanelWithNoPreferredSizeDefinedException', a 'EmptyPanelGroupException' and a 'ListCouldntLoadPanelFromListException' with any 'Exception'
79
	public final static Class[] EXTENSIONPOINTS9_CLASSES = {SampleInvisiblePanel.class, SampleInitializingExcetionPanel.class, SampleUndefinedPreferredSizeExceptionPanel.class}; // Test 'ListCouldntAddPanelException' with a 'PanelWithNoPreferredSizeDefinedException', a 'EmptyPanelGroupGUIException' and a 'ListCouldntLoadPanelFromListException' with any 'Exception'
80
	public final static Class[] EXTENSIONPOINTS10_CLASSES = {SampleBandSetupPanel.class, SampleInvisiblePanel.class, SampleInitializingExcetionPanel.class, SampleUndefinedPreferredSizeExceptionPanel.class}; // Test 'ListCouldntAddPanelException' with a 'PanelWithNoPreferredSizeDefinedException', a EmptyPanelGroupGUIException and a 'ListCouldntLoadPanelFromListException' with any 'Exception'
81
	public final static Object REFERENCE1 = new String("Raster Layer");
82
	public final static Object REFERENCE2 = new String("Imaginary Layer");
83
	public final static Object REFERENCE3 = new String("Other tests");
84
	public final static String REFERENCE1_NAME = "Raster Layer reference";
85
	public final static String REFERENCE2_NAME = "Imaginary Layer reference";
86
	public final static String REFERENCE3_NAME = "Other tests reference";
87
	public final static String[] PANELS1_IDS = {"Information_ID", "Bands_ID", "Transparency_ID", "Enhanced_ID", "PanSharpening_ID", "Scale_ID"};
88
	public final static String[] PANELS2_IDS = {"Information_ID", "Transparency_ID", "Scale_ID"};
89
	public final static String[] PANELS3_IDS = {"WithoutGroup_ID", "GroupLabelRepeated_ID"};
90
	public final static String[] PANELS1_LABELS = {"Information_LABEL", "Bands_LABEL", "Transparency_LABEL", "Enhanced_LABEL", "PanSharpening_LABEL", "Scale_LABEL"};
91
	public final static String[] PANELS2_LABELS = {"Information_LABEL", "Transparency_LABEL", "Scale_LABEL"};
92
	public final static String[] PANELS3_LABELS = {"WithoutGroup_LABEL", "GroupLabelRepeated_LABEL"};
93
	public final static String[] PANELS1_LABELGROUPS = {"Information_LABELGROUP", "Bands_LABELGROUP", "Transparency_LABELGROUP", "Enhanced_LABELGROUP", "PanSharpening_LABELGROUP", "Scale_LABELGROUP"};
94
	public final static String[] PANELS2_LABELGROUPS = {"Information_LABELGROUP", "Transparency_LABELGROUP", "Scale_LABELGROUP"};
95
	public final static String[] PANELS3_LABELGROUPS = {null, "GroupLabelRepeated_LABELGROUP"};
96
	public final static short PANELS_DEFAULT_WIDTH = 500;
97
	public final static short PANELS_DEFAULT_HEIGHT = 400;
98

  
99

  
100
	/**
101
	 * <p>Loads the information of the sample.</p>
102
	 */
103
	public static void loadSample() {
104
			ExtensionPointManager epMan = ToolsLocator.getExtensionPointManager();
105

  
106
		ExtensionPoint ep = epMan.add(EXTENSIONPOINT1_NAME, "");
107

  
108
		ep.append(EXTENSIONPOINTS1_NAMES[0], "", EXTENSIONPOINTS1_CLASSES[0]);
109
		ep.append(EXTENSIONPOINTS1_NAMES[1], "", EXTENSIONPOINTS1_CLASSES[1]);
110
		ep.append(EXTENSIONPOINTS1_NAMES[2], "", EXTENSIONPOINTS1_CLASSES[2]);
111
		ep.append(EXTENSIONPOINTS1_NAMES[3], "", EXTENSIONPOINTS1_CLASSES[3]);
112
		ep.append(EXTENSIONPOINTS1_NAMES[4], "", EXTENSIONPOINTS1_CLASSES[4]);
113
		ep.append(EXTENSIONPOINTS1_NAMES[5], "", EXTENSIONPOINTS1_CLASSES[5]);
114

  
115
		ep = epMan.add(EXTENSIONPOINT2_NAME, "");
116
		ep.append(EXTENSIONPOINTS2_NAMES[0], "", EXTENSIONPOINTS2_CLASSES[0]);
117
		ep.append(EXTENSIONPOINTS2_NAMES[1], "", EXTENSIONPOINTS2_CLASSES[1]);
118
		ep.append(EXTENSIONPOINTS2_NAMES[2], "", EXTENSIONPOINTS2_CLASSES[2]);
119

  
120
		ep = epMan.add(EXTENSIONPOINT3_NAME, "");
121
		ep.append(EXTENSIONPOINTS3_OTHER_NAMES[0], "",
122
				OTHER_PANELS_EXTENSIONPOINTS3_CLASSES[0]);
123
		ep.append(EXTENSIONPOINTS3_OTHER_NAMES[1], "",
124
				OTHER_PANELS_EXTENSIONPOINTS3_CLASSES[1]);
125

  
126
		ep = epMan.add(EXTENSIONPOINT4_NAME, "");
127
		ep.append(EXTENSIONPOINTS4_NAMES[0], "", EXTENSIONPOINTS4_CLASSES[0]);
128
		ep.append(EXTENSIONPOINTS4_NAMES[1], "", EXTENSIONPOINTS4_CLASSES[1]);
129

  
130
		ep = epMan.add(EXTENSIONPOINT5_NAME, "");
131
		ep.append(EXTENSIONPOINTS5_NAMES[0], "", EXTENSIONPOINTS5_CLASSES[0]);
132
		ep.append(EXTENSIONPOINTS5_NAMES[1], "", EXTENSIONPOINTS5_CLASSES[1]);
133

  
134
		epMan.add(EXTENSIONPOINT6_NAME, "");
135

  
136
		ep = epMan.add(EXTENSIONPOINT7_NAME, "");
137
		ep.append(EXTENSIONPOINTS7_NAMES[0], "", EXTENSIONPOINTS7_CLASSES[0]);
138

  
139
		ep = epMan.add(EXTENSIONPOINT8_NAME, "");
140
		ep.append(EXTENSIONPOINTS8_NAMES[0], "", EXTENSIONPOINTS8_CLASSES[0]);
141
		ep.append(EXTENSIONPOINTS8_NAMES[1], "", EXTENSIONPOINTS8_CLASSES[1]);
142

  
143
		ep = epMan.add(EXTENSIONPOINT9_NAME, "");
144
		ep.append(EXTENSIONPOINTS9_NAMES[0], "", EXTENSIONPOINTS9_CLASSES[0]);
145
		ep.append(EXTENSIONPOINTS9_NAMES[1], "", EXTENSIONPOINTS9_CLASSES[1]);
146
		ep.append(EXTENSIONPOINTS9_NAMES[2], "", EXTENSIONPOINTS9_CLASSES[2]);
147

  
148
		ep = epMan.add(EXTENSIONPOINT10_NAME, "");
149
		ep.append(EXTENSIONPOINTS10_NAMES[0], "", EXTENSIONPOINTS10_CLASSES[0]);
150
		ep.append(EXTENSIONPOINTS10_NAMES[1], "", EXTENSIONPOINTS10_CLASSES[1]);
151
		ep.append(EXTENSIONPOINTS10_NAMES[2], "", EXTENSIONPOINTS10_CLASSES[2]);
152
		ep.append(EXTENSIONPOINTS10_NAMES[3], "", EXTENSIONPOINTS10_CLASSES[3]);
153
	}
154
}
tags/v2_0_0_Build_2047/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/samples/SamplePanSharpeningPanel.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.samples;
21

  
22
import java.awt.Color;
23
import java.awt.Dimension;
24
import java.awt.event.MouseAdapter;
25
import java.awt.event.MouseEvent;
26
import java.io.Serializable;
27

  
28
import javax.swing.JScrollPane;
29
import javax.swing.JTextArea;
30

  
31
import org.gvsig.gui.beans.panelGroup.panels.AbstractPanel;
32

  
33
/**
34
 * <p>Sample of {@link AbstractPanel AbstractPanel}.</p>
35
 * 
36
 * @version 16/10/2007
37
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
38
 */
39
public class SamplePanSharpeningPanel extends AbstractPanel implements Serializable {
40
	private static final long serialVersionUID = 648806623810248226L;
41

  
42
	/**
43
	 * <p>Element for the interface.</p>
44
	 */
45
	private JTextArea jTextArea = null;
46
	
47
	/**
48
	 * @see AbstractPanel#AbstractPanel()
49
	 */
50
	public SamplePanSharpeningPanel() {
51
		super();
52
		initialize();
53
	}
54
	
55
	/**
56
	 * @see AbstractPanel#AbstractPanel(String, String, String)
57
	 */
58
	public SamplePanSharpeningPanel(String id, String label, String labelGroup) {
59
		super(id, label, labelGroup);
60
		initialize();
61
	}
62

  
63
	@Override
64
	protected void initialize() {
65
		add(new JScrollPane(getJTextArea()));
66
		setToolTipText(getID());
67
		
68
		setID(Samples_ExtensionPointsOfIPanels.PANELS1_IDS[4]);
69
		setLabel(Samples_ExtensionPointsOfIPanels.PANELS1_LABELS[4]);
70
		setLabelGroup(Samples_ExtensionPointsOfIPanels.PANELS1_LABELGROUPS[4]);
71
		setPreferredSize(new Dimension(Samples_ExtensionPointsOfIPanels.PANELS_DEFAULT_WIDTH, Samples_ExtensionPointsOfIPanels.PANELS_DEFAULT_HEIGHT));
72
		resetChangedStatus();
73
	}
74
	
75
	/**
76
	 * This method initializes jTextArea
77
	 *
78
	 * @return JTextArea
79
	 */
80
	private JTextArea getJTextArea() {
81
		if (jTextArea == null) {
82
			jTextArea = new JTextArea(5, 40);
83
			jTextArea.setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
84
			jTextArea.setEditable(false);
85
			jTextArea.setBackground(Color.MAGENTA);
86
			jTextArea.addMouseListener(new MouseAdapter() {
87
				
88
				public void mouseClicked(MouseEvent e) {
89
					if (getPanelGroup() != null) {
90
						getPanelGroup().setEnabledAcceptButton(! getPanelGroup().isEnabledAcceptButton());
91
						getPanelGroup().setEnabledApplyButton(! getPanelGroup().isEnabledApplyButton());
92
					}	
93
				}
94
			});
95
		}
96

  
97
		return jTextArea;
98
	}
99

  
100
	@Override
101
	public void setID(String id) {
102
		super.setID(id);
103
		
104
		setToolTipText(getID());
105
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
106
	}
107

  
108
	@Override
109
	public void setLabel(String label) {
110
		super.setLabel(label);
111
		
112
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
113
	}
114

  
115
	@Override
116
	public void setLabelGroup(String labelGroup) {
117
		super.setLabelGroup(labelGroup);
118
		
119
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
120
	}
121

  
122
	public void accept() {
123
	}
124

  
125
	public void apply() {
126
	}
127

  
128
	public void cancel() {
129
	}
130

  
131
	public void selected() {
132
		System.out.println("I'm the IPanel: " + toString() + "\n and I've been selected. My information is: " +
133
				 "\n\tID: " + getID() + "\n\tLABEL_GROUP: " + getLabelGroup() + "\n\tLABEL: " + getLabel() + "\n\tCLASS: " + getClass() +
134
				 "\n\tMy Preferred Size: " + getPreferredSize() + "\n\tAnd My size: " + getSize());
135
	}
136
}
tags/v2_0_0_Build_2047/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/samples/SamplePanelWithoutGroupLabel.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.samples;
21

  
22
import java.awt.Color;
23
import java.awt.Dimension;
24
import java.io.Serializable;
25

  
26
import javax.swing.JScrollPane;
27
import javax.swing.JTextArea;
28

  
29
import org.gvsig.gui.beans.panelGroup.panels.AbstractPanel;
30

  
31
/**
32
 * <p>Sample of {@link AbstractPanel AbstractPanel}.</p>
33
 * 
34
 * @version 23/10/2007
35
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
36
 */
37
public class SamplePanelWithoutGroupLabel extends AbstractPanel implements Serializable {
38
	private static final long serialVersionUID = -5449402170753829090L;
39

  
40
	/**
41
	 * <p>Element for the interface.</p>
42
	 */
43
	private JTextArea jTextArea = null;
44

  
45
	/**
46
	 * @see AbstractPanel#AbstractPanel()
47
	 */
48
	public SamplePanelWithoutGroupLabel() {
49
		super();
50
		initialize();
51
	}
52

  
53
	/**
54
	 * @see AbstractPanel#AbstractPanel(String, String, String)
55
	 */
56
	public SamplePanelWithoutGroupLabel(String id, String label, String labelGroup) {
57
		super(id, label, labelGroup);
58
		initialize();
59
	}
60

  
61
	@Override
62
	protected void initialize() {
63
		add(new JScrollPane(getJTextArea()));
64
		setToolTipText(getID());
65
		
66
		setID(Samples_ExtensionPointsOfIPanels.PANELS3_IDS[0]);
67
		setLabel(Samples_ExtensionPointsOfIPanels.PANELS3_LABELS[0]);
68
		setPreferredSize(new Dimension(Samples_ExtensionPointsOfIPanels.PANELS_DEFAULT_WIDTH, Samples_ExtensionPointsOfIPanels.PANELS_DEFAULT_HEIGHT));
69
		resetChangedStatus();
70
	}
71
	
72
	/**
73
	 * This method initializes jTextArea
74
	 *
75
	 * @return JTextArea
76
	 */
77
	private JTextArea getJTextArea() {
78
		if (jTextArea == null) {
79
			jTextArea = new JTextArea(5, 40);
80
			jTextArea.setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
81
			jTextArea.setEditable(false);
82
			jTextArea.setBackground(Color.WHITE);
83
		}
84

  
85
		return jTextArea;
86
	}
87

  
88
	@Override
89
	public void setID(String id) {
90
		super.setID(id);
91

  
92
		setToolTipText(getID());
93
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
94
	}
95

  
96
	@Override
97
	public void setLabel(String label) {
98
		super.setLabel(label);
99
		
100
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
101
	}
102

  
103
	@Override
104
	public void setLabelGroup(String labelGroup) {
105
		super.setLabelGroup(labelGroup);
106
		
107
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
108
	}
109

  
110
	public void accept() {
111
	}
112

  
113
	public void apply() {
114
	}
115

  
116
	public void cancel() {
117
	}
118

  
119
	public void selected() {
120
		System.out.println("I'm the IPanel: " + toString() + "\n and I've been selected. My information is: " +
121
				 "\n\tID: " + getID() + "\n\tLABEL_GROUP: " + getLabelGroup() + "\n\tLABEL: " + getLabel() + "\n\tCLASS: " + getClass() +
122
				 "\n\tMy Preferred Size: " + getPreferredSize() + "\n\tAnd My size: " + getSize());
123
	}
124
}
tags/v2_0_0_Build_2047/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/samples/SampleInvisiblePanel.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.samples;
21

  
22
import java.awt.Color;
23
import java.awt.Dimension;
24
import java.io.Serializable;
25

  
26
import javax.swing.JScrollPane;
27
import javax.swing.JTextArea;
28

  
29
import org.gvsig.gui.beans.panelGroup.panels.AbstractPanel;
30

  
31
/**
32
 * <p>Sample of {@link AbstractPanel AbstractPanel}.</p>
33
 * 
34
 * @version 10/12/2007
35
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
36
 */
37
public class SampleInvisiblePanel extends AbstractPanel implements Serializable {
38
	private static final long serialVersionUID = -1629511810619122126L;
39

  
40
	/**
41
	 * <p>Element for the interface.</p>
42
	 */
43
	private JTextArea jTextArea = null;
44
	
45
	/**
46
	 * @see AbstractPanel#AbstractPanel()
47
	 */
48
	public SampleInvisiblePanel() {
49
		super();
50
		initialize();
51
	}
52
	
53
	/**
54
	 * @see AbstractPanel#AbstractPanel(String, String, String)
55
	 */
56
	public SampleInvisiblePanel(String id, String label, String labelGroup) {
57
		super(id, label, labelGroup);
58
		initialize();
59
	}
60
	
61
	@Override
62
	protected void initialize() {
63
		add(new JScrollPane(getJTextArea()));
64
		setToolTipText(getID());
65
		
66
		setID(Samples_ExtensionPointsOfIPanels.PANELS1_IDS[0]);
67
		setLabel(Samples_ExtensionPointsOfIPanels.PANELS1_LABELS[0]);
68
		setLabelGroup(Samples_ExtensionPointsOfIPanels.PANELS1_LABELGROUPS[0]);
69
		setPreferredSize(new Dimension(Samples_ExtensionPointsOfIPanels.PANELS_DEFAULT_WIDTH, Samples_ExtensionPointsOfIPanels.PANELS_DEFAULT_HEIGHT));
70
		resetChangedStatus();
71
		setVisible(false);
72
	}
73
	
74
	/**
75
	 * This method initializes jTextArea
76
	 *
77
	 * @return JTextArea
78
	 */
79
	private JTextArea getJTextArea() {
80
		if (jTextArea == null) {
81
			jTextArea = new JTextArea(5, 40);
82
			jTextArea.setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
83
			jTextArea.setEditable(false);
84
			jTextArea.setBackground(Color.RED);
85
		}
86

  
87
		return jTextArea;
88
	}
89
	
90
	@Override
91
	public void setID(String id) {
92
		super.setID(id);
93
		
94
		setToolTipText(getID());
95
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
96
		hasChanged = true;
97
	}
98

  
99
	@Override
100
	public void setLabel(String label) {
101
		super.setLabel(label);
102
		
103
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
104
		hasChanged = true;
105
	}
106

  
107
	@Override
108
	public void setLabelGroup(String labelGroup) {
109
		super.setLabelGroup(labelGroup);
110
		
111
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
112
		hasChanged = true;
113
	}
114

  
115
	/*
116
	 * (non-Javadoc)
117
	 * @see org.gvsig.gui.beans.panelGroup.panels.IPanel#accept()
118
	 */
119
	public void accept() {
120
		System.out.println("I'm the IPanel: " + toString() + "\n and I'm executing an 'accept' method.");
121
	}
122

  
123
	/*
124
	 * (non-Javadoc)
125
	 * @see org.gvsig.gui.beans.panelGroup.panels.IPanel#apply()
126
	 */
127
	public void apply() {
128
		System.out.println("I'm the IPanel: " + toString() + "\n and I'm executing an 'apply' method.");
129
	}
130

  
131
	/*
132
	 * (non-Javadoc)
133
	 * @see org.gvsig.gui.beans.panelGroup.panels.IPanel#cancel()
134
	 */
135
	public void cancel() {
136
		System.out.println("I'm the IPanel: " + toString() + "\n and I'm executing a 'cancel' method.");
137
	}
138

  
139
	/*
140
	 * (non-Javadoc)
141
	 * @see org.gvsig.gui.beans.panelGroup.panels.IPanel#selected()
142
	 */
143
	public void selected() {
144
		System.out.println("I'm the IPanel: " + toString() + "\n and I've been selected. My information is: " +
145
				 "\n\tID: " + getID() + "\n\tLABEL_GROUP: " + getLabelGroup() + "\n\tLABEL: " + getLabel() + "\n\tCLASS: " + getClass() +
146
				 "\n\tMy Preferred Size: " + getPreferredSize() + "\n\tAnd My size: " + getSize());
147
	}
148
}
tags/v2_0_0_Build_2047/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/samples/SampleBandSetupPanel.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.samples;
21

  
22
import java.awt.Color;
23
import java.awt.Dimension;
24
import java.awt.event.MouseAdapter;
25
import java.awt.event.MouseEvent;
26
import java.io.Serializable;
27

  
28
import javax.swing.JScrollPane;
29
import javax.swing.JTextArea;
30

  
31
import org.gvsig.gui.beans.panelGroup.AbstractPanelGroup;
32
import org.gvsig.gui.beans.panelGroup.panels.AbstractPanel;
33

  
34
/**
35
 * <p>Sample of {@link AbstractPanel AbstractPanel}.</p>
36
 * 
37
 * @version 16/10/2007
38
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
39
 */
40
public class SampleBandSetupPanel extends AbstractPanel implements Serializable {
41
	private static final long serialVersionUID = 40652963597544670L;
42

  
43
	/**
44
	 * <p>Element for the interface.</p>
45
	 */
46
	private JTextArea jTextArea = null;
47

  
48
	/**
49
	 * @see AbstractPanel#AbstractPanel()
50
	 */
51
	public SampleBandSetupPanel() {
52
		super();
53
		initialize();
54
	}
55

  
56
	/**
57
	 * @see AbstractPanel#AbstractPanel(String, String, String)
58
	 */
59
	public SampleBandSetupPanel(String id, String label, String labelGroup) {
60
		super(id, label, labelGroup);
61
		initialize();
62
	}
63

  
64
	@Override
65
	protected void initialize() {
66
		add(new JScrollPane(getJTextArea()));
67
		setToolTipText(getID());
68
		
69
		setID(Samples_ExtensionPointsOfIPanels.PANELS1_IDS[1]);
70
		setLabel(Samples_ExtensionPointsOfIPanels.PANELS1_LABELS[1]);
71
		setLabelGroup(Samples_ExtensionPointsOfIPanels.PANELS1_LABELGROUPS[1]);
72
		setPreferredSize(new Dimension(Samples_ExtensionPointsOfIPanels.PANELS_DEFAULT_WIDTH, Samples_ExtensionPointsOfIPanels.PANELS_DEFAULT_HEIGHT));
73
		resetChangedStatus();
74
	}
75
	
76
	/**
77
	 * This method initializes jTextArea
78
	 *
79
	 * @return JTextArea
80
	 */
81
	private JTextArea getJTextArea() {
82
		if (jTextArea == null) {
83
			jTextArea = new JTextArea(5, 40);
84
			jTextArea.setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
85
			jTextArea.setEditable(false);
86
			jTextArea.setBackground(Color.GREEN);
87
			
88
			jTextArea.addMouseListener(new MouseAdapter() {
89
				
90
				public void mouseClicked(MouseEvent e) {
91
					if (getPanelGroup() != null) {
92
						getPanelGroup().setEnabledAcceptButton(! getPanelGroup().isEnabledAcceptButton());
93
						getPanelGroup().setEnabledApplyButton(! getPanelGroup().isEnabledApplyButton());
94
						getPanelGroup().setEnabledCancelButton(! getPanelGroup().isEnabledCancelButton());
95
					}	
96
				}
97
			});
98
		}
99

  
100
		return jTextArea;
101
	}
102

  
103
	@Override
104
	public void setID(String id) {
105
		super.setID(id);
106

  
107
		setToolTipText(getID());
108
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
109
	}
110

  
111
	@Override
112
	public void setLabel(String label) {
113
		super.setLabel(label);
114
		
115
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
116
	}
117

  
118
	@Override
119
	public void setLabelGroup(String labelGroup) {
120
		super.setLabelGroup(labelGroup);
121
		
122
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
123
	}
124

  
125
	public void accept() {
126
	}
127

  
128
	public void apply() {
129
	}
130

  
131
	public void cancel() {
132
	}
133

  
134
	public void selected() {
135
		System.out.println("I'm the IPanel: " + toString() + "\n and I've been selected. My information is: " +
136
				 "\n\tID: " + getID() + "\n\tLABEL_GROUP: " + getLabelGroup() + "\n\tLABEL: " + getLabel() + "\n\tCLASS: " + getClass() +
137
				 "\n\tMy Preferred Size: " + getPreferredSize() + "\n\tAnd My size: " + getSize());
138
	}
139

  
140
	public void setPanelGroup(AbstractPanelGroup panelGroup) {
141
		super.setPanelGroup(panelGroup);
142
	}
143
}
tags/v2_0_0_Build_2047/applications/appgvSIG/src-test/org/gvsig/app/panelGroup/samples/SampleEnhancedPanel.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.samples;
21

  
22
import java.awt.Color;
23
import java.awt.Dimension;
24
import java.awt.event.MouseAdapter;
25
import java.awt.event.MouseEvent;
26
import java.io.Serializable;
27

  
28
import javax.swing.JScrollPane;
29
import javax.swing.JTextArea;
30

  
31
import org.gvsig.gui.beans.panelGroup.panels.AbstractPanel;
32

  
33
/**
34
 * <p>Sample of {@link AbstractPanel AbstractPanel}.</p>
35
 * 
36
 * @version 16/10/2007
37
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
38
 */
39
public class SampleEnhancedPanel extends AbstractPanel implements Serializable {
40
	private static final long serialVersionUID = -7469300452126449245L;
41

  
42
	/**
43
	 * <p>Element for the interface.</p>
44
	 */
45
	private JTextArea jTextArea = null;
46
	
47
	/**
48
	 * @see AbstractPanel#AbstractPanel()
49
	 */
50
	public SampleEnhancedPanel() {
51
		super();
52
		initialize();
53
	}
54
	
55
	/**
56
	 * @see AbstractPanel#AbstractPanel(String, String, String)
57
	 */
58
	public SampleEnhancedPanel(String id, String label, String labelGroup) {
59
		super(id, label, labelGroup);
60
		initialize();
61
	}
62
	
63
	@Override
64
	protected void initialize() {
65
		add(new JScrollPane(getJTextArea()));
66
		setToolTipText(getID());
67
		
68
		setID(Samples_ExtensionPointsOfIPanels.PANELS1_IDS[3]);
69
		setLabel(Samples_ExtensionPointsOfIPanels.PANELS1_LABELS[3]);
70
		setLabelGroup(Samples_ExtensionPointsOfIPanels.PANELS1_LABELGROUPS[3]);
71
		setPreferredSize(new Dimension(Samples_ExtensionPointsOfIPanels.PANELS_DEFAULT_WIDTH, Samples_ExtensionPointsOfIPanels.PANELS_DEFAULT_HEIGHT));
72
		resetChangedStatus();
73
	}
74
	
75
	/**
76
	 * This method initializes jTextArea
77
	 *
78
	 * @return JTextArea
79
	 */
80
	private JTextArea getJTextArea() {
81
		if (jTextArea == null) {
82
			jTextArea = new JTextArea(5, 40);
83
			jTextArea.setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
84
			jTextArea.setEditable(false);
85
			jTextArea.setBackground(Color.CYAN);
86
			jTextArea.addMouseListener(new MouseAdapter() {
87
				
88
				public void mouseClicked(MouseEvent e) {
89
					if (getPanelGroup() != null) {
90
						getPanelGroup().setEnabledCancelButton(! getPanelGroup().isEnabledCancelButton());
91
					}	
92
				}
93
			});
94
		}
95

  
96
		return jTextArea;
97
	}
98
	
99
	@Override
100
	public void setID(String id) {
101
		super.setID(id);
102

  
103
		setToolTipText(getID());
104
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
105
	}
106

  
107
	@Override
108
	public void setLabel(String label) {
109
		super.setLabel(label);
110
		
111
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
112
	}
113

  
114
	@Override
115
	public void setLabelGroup(String labelGroup) {
116
		super.setLabelGroup(labelGroup);
117
		
118
		getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
119
	}
120

  
121
	public void accept() {
122
	}
123

  
124

  
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff