00032: public class Hello { 00033: int foo = 1998 ; 00034: int hex_foo = 0xCAFEBABE; 00035: boolean b = false; 00036: Integer i = null ; 00037: char c = '\'', d = 'n', e = '\\' ; 00038: String xml = "<tag attr=\"value\">ä</tag>", foo2 = "\\" ; 00039: 00040: /* mymethod */ 00041: public void mymethod(int i) { 00042: // just a foo method 00043: } 00044: /* mymethod */ 00045: 00046: /* main */ 00047: public static void main( String args[] ) { 00048: // just some greetings ;-) /* 00049: System.out.println( "Hello from java2html :-)" ) ; 00050: System.out.println( "\tby Lorenzo Bettini" ) ; 00051: System.out.println( "\thttp://www.lorenzobettini.it" ) ; 00052: if (argc > 0) 00053: String param = argc[0]; 00054: //System.out.println( "bye bye... :-D" ) ; // see you soon 00055: } 00056: /* main */ 00057: }