summaryrefslogtreecommitdiff
path: root/tutorial/examples/bca/Test.java
blob: 5de77d0c86b08ac4590152c7105590a61f4ef0ce (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
/*
 * This code was generated by ojc.
 */
package examples.bca;


import java.io.PrintStream;


public class Test implements examples.bca.Writable, examples.bca.Printable
{

    public void write( PrintStream out )
    {
        out.println( "Hello" );
    }

    
    public void print()
    {
        this.write( java.lang.System.out );
    }

}