summaryrefslogtreecommitdiff
path: root/tutorial/examples/verbose2/Test.java
blob: 50848fb64eebc96783d32ee9f8df55df2ef4aa6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
 * This code was generated by ojc.
 */
package examples.verbose2;


import java.awt.Panel;
import java.util.*;
import java.io.PrintStream;


public class Test extends Panel
{

    private int iii = 0;

    private Test n = null;

    private String str = "string";

    public Test()
    {
        super();
    }

    /**
     * @param  
     * @return  
     * @exception  
     * @see java.lang.Object
     */
    public static void main( String[] argv )
    {
        java.lang.System.out.println( "main is called." );
        PrintStream out = System.out;
        PrintStream error = java.lang.System.err;
        out.println( "Hello" + " " + "World" );
        Test n = new Test();
        java.lang.System.err.println( "done. " );
        Test test = new Test();
        test.hoge();
        test.foo();
    }

    public void hoge()
    {
        java.lang.System.out.println( "hoge is called." );
        Local l = new Local();
        System.out.println( l.foo );
        System.out.println( l.bar.str );
    }

    public Test( String str )
    {
        this.str = str;
        n = null;
    }

    public int foo()
    {
        java.lang.System.out.println( "foo is called." );
        return iii;
    }

    public String toString()
    {
        java.lang.System.out.println( "toString is called." );
        if (n == null) {
            return str;
        }
        return str + n;
    }

}


class Local
{

    String foo = null;

    Local2 bar = new Local2();

    public final String getFoo( Integer i )
    {
        java.lang.System.out.println( "getFoo is called." );
        return foo;
    }

}


class Local2
{

    String str = "" + "TEST";

}