1
2
3
4
5
6
7 package yawn.ui.gui;
8
9 import javax.swing.JDesktopPane;
10
11 /***
12 * @author marti
13 *
14 * TODO To change the template for this generated type comment go to
15 * Window - Preferences - Java - Code Style - Code Templates
16 */
17 public class SwingExperimentCreator extends JDesktopPane {
18
19 /***
20 *
21 */
22 public SwingExperimentCreator() {
23 super();
24
25 initialize();
26 }
27 public static void main(String[] args) {
28 }
29 /***
30 * This method initializes this
31 *
32 * @return void
33 */
34 private void initialize() {
35 this.setSize(300,200);
36 }
37 }