View Javadoc

1   /*
2    * Created on Apr 29, 2005
3    *
4    * TODO To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
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  		// TODO Auto-generated constructor stub
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  }