01: /*
02: * SimpleMainClass.java
03: *
04: * Created on 29. duben 2001, 22:53
05: */
06:
07: package jemmyI18NWizard.data;
08:
09: /**
10: *
11: * @author vn104997
12: * @version 1.0
13: */
14: public class SimpleMainClass {
15: String string1 = null;
16:
17: /** Creates new SimpleMainClass */
18: public SimpleMainClass() {
19: string1 = "Testing sequence: \"{}()[]";
20: }
21:
22: /**
23: * @param args the command line arguments
24: */
25: public static void main(String args[]) {
26: System.out
27: .println("there is something rotten in the state of Danemark...");
28: System.out.println("\u0025\t\u0026");
29: }
30:
31: }
|