01: package com.calipso.xmleditor;
02:
03: import java.awt.*;
04:
05: /**
06: *
07: * User: soliveri
08: * Date: 14-oct-2003
09: * Time: 17:58:23
10: *
11: */
12:
13: public class StartUP {
14: public static void main(String[] args) {
15: XmlEditorUI editorUI = new XmlEditorUI("", args);
16: editorUI.setSize(new Dimension(800, 575));
17: editorUI.setVisible(true);
18: }
19: }
|