Revision 38653

View differences:

tags/v2_0_0_Build_2050/applications/appgvSIG/src-test/test/TestClassLoader.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 test;
52

  
53
import java.io.DataInputStream;
54
import java.io.File;
55
import java.io.IOException;
56
import java.io.InputStream;
57
import java.net.MalformedURLException;
58
import java.net.URL;
59
import java.util.ArrayList;
60
import java.util.Enumeration;
61
import java.util.Hashtable;
62
import java.util.jar.JarException;
63
import java.util.zip.ZipEntry;
64
import java.util.zip.ZipFile;
65

  
66
public class TestClassLoader extends ClassLoader{
67
	private Hashtable jarz = new Hashtable();
68
	private Hashtable classes = new Hashtable();
69
	private String baseDir;
70

  
71
	public TestClassLoader(String baseDir) throws IOException {
72
		this.baseDir = baseDir;
73

  
74
		File dir = new File(baseDir);
75

  
76

  
77
		URL[] jars = (URL[]) getJarURLs(dir).toArray(new URL[0]);
78

  
79
		if (jars == null) {
80
			throw new IllegalArgumentException("jars cannot be null"); //$NON-NLS-1$
81
		}
82

  
83
		//Se itera por las URLS que deben de ser jar's
84
		ZipFile[] jarFiles = new ZipFile[jars.length];
85

  
86
		for (int i = 0; i < jars.length; i++) {
87
			jarFiles[i] = new ZipFile(jars[i].getPath());
88
			Enumeration files = jarFiles[i].entries();
89
			while (files.hasMoreElements()) {
90
				//Se obtiene la entrada
91
				ZipEntry file = (ZipEntry) files.nextElement();
92
				String fileName = file.getName();
93

  
94
				//Se obtiene el nombre de la clase
95
				if (!fileName.toLowerCase().endsWith(".class")) { //$NON-NLS-1$
96
					continue;
97
				}
98

  
99
				fileName = fileName.substring(0, fileName.length() - 6).replace('/',
100
				'.');
101

  
102
				//Se cromprueba si ya hab?a una clase con dicho nombre
103
				if (jarz.get(fileName) != null) {
104
					throw new JarException(
105
							"two or more classes with the same name in the jars: " +
106
							fileName);
107
				}
108

  
109
				//Se registra la clase
110
				jarz.put(fileName, jarFiles[i]);
111
				try {
112
					loadClass(fileName, true);
113
				} catch (ClassNotFoundException e) {
114
					// TODO Auto-generated catch block
115
					e.printStackTrace();
116
				}
117
			}
118

  
119
		}
120
	}
121

  
122
	private ArrayList getJarURLs(File file) {
123
		ArrayList jars = new ArrayList();
124
		if (file.isDirectory()) {
125
			String[] fileNames = file.list();
126
			for (int i = 0; i < fileNames.length; i++) {
127
				File file1 = new File(file+ File.separator + fileNames[i]);
128
				if (file1.isDirectory()) {
129
					jars.addAll(getJarURLs(file1));
130
				} else {
131
					if (file1.getAbsolutePath().endsWith(".jar")) {
132
						try {
133
							jars.add(file1.toURL());
134
						} catch (MalformedURLException e) {
135
							e.printStackTrace();
136
						}
137
					}
138
				}
139
			}
140
		} else {
141
			if (file.getAbsolutePath().endsWith(".jar")) {
142
				try {
143
					jars.add(new URL(file.getAbsolutePath()));
144
				} catch (MalformedURLException e) {
145
					e.printStackTrace();
146
				}
147
			}
148
		}
149
		return jars;
150
	}
151

  
152
	protected synchronized Class loadClass(String className, boolean resolve) throws ClassNotFoundException {
153
		Class c;
154
		System.out.print("Loading class ["+className+"]...");
155
		try {
156
			c = super.loadClass(className, resolve);
157
		} catch (ClassNotFoundException e) {
158
			ZipFile file = (ZipFile) jarz.get(className);
159
			ZipEntry classFile = file.getEntry(className);
160
			byte[] classBytes;
161
			try {
162
				classBytes = loadClassBytes(classFile, file.getInputStream(classFile));
163
			} catch (IOException e1) {
164
				throw new ClassNotFoundException(className);
165
			}
166
			c = defineClass(className, classBytes, 0, classBytes.length);
167
		}
168
		System.out.println(" Ok!");
169

  
170
		return c;
171
	}
172

  
173
	protected Class findClass(String className) throws ClassNotFoundException {
174
		return loadClass(className);
175
	}
176

  
177
	private byte[] loadClassBytes(ZipEntry classFile, InputStream is)
178
	throws IOException {
179
		// Get size of class file
180
		int size = (int) classFile.getSize();
181

  
182
		// Reserve space to read
183
		byte[] buff = new byte[size];
184

  
185
		// Get stream to read from
186
		DataInputStream dis = new DataInputStream(is);
187

  
188
		// Read in data
189
		dis.readFully(buff);
190

  
191
		// close stream
192
		dis.close();
193

  
194
		// return data
195
		return buff;
196
	}
197

  
198
	public static void main(String args[]) {
199
		try {
200
			TestClassLoader cl = new TestClassLoader("lib-test/");
201
		} catch (IOException e) {
202
			// TODO Auto-generated catch block
203
			e.printStackTrace();
204
		}
205
	}
206
}
0 207

  
tags/v2_0_0_Build_2050/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_2050/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_2050/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_2050/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_2050/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_2050/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_2050/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_2050/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_2050/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_2050/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_2050/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_2050/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

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

Also available in: Unified diff