KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jemmyI18NWizard > data > SimpleMainClass


1 /*
2  * SimpleMainClass.java
3  *
4  * Created on 29. duben 2001, 22:53
5  */

6
7 package jemmyI18NWizard.data;
8
9 /**
10  *
11  * @author vn104997
12  * @version 1.0
13  */

14 public class SimpleMainClass {
15     String JavaDoc 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 JavaDoc args[]) {
26         System.out.println("there is something rotten in the state of Danemark...");
27         System.out.println("\u0025\t\u0026");
28     }
29
30 }
31
Popular Tags