KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > calipso > xmleditor > StartUP


1 package com.calipso.xmleditor;
2
3 import java.awt.*;
4
5 /**
6  *
7  * User: soliveri
8  * Date: 14-oct-2003
9  * Time: 17:58:23
10  *
11  */

12
13 public class StartUP {
14   public static void main(String JavaDoc [] args) {
15     XmlEditorUI editorUI = new XmlEditorUI("", args);
16     editorUI.setSize(new Dimension(800, 575));
17     editorUI.setVisible(true);
18   }
19 }
20
Popular Tags