summaryrefslogtreecommitdiff
path: root/tutorial/examples/autoimp/Test.java
blob: 6fa37b48546971a3b89fc70bbb085c3de5ac8440 (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
/*
 * This code was generated by ojc.
 */
/* quick implementation! */
package examples.autoimp;


import java.awt.event.*;


public class Test implements WindowListener
{

    public void windowClosed( WindowEvent e )
    {
        System.exit( 0 );
    }

    
    public void windowIconified( java.awt.event.WindowEvent oj_param0 )
    {
        return;
    }

    
    public void windowDeactivated( java.awt.event.WindowEvent oj_param0 )
    {
        return;
    }

    
    public void windowActivated( java.awt.event.WindowEvent oj_param0 )
    {
        return;
    }

    
    public void windowOpened( java.awt.event.WindowEvent oj_param0 )
    {
        return;
    }

    
    public void windowDeiconified( java.awt.event.WindowEvent oj_param0 )
    {
        return;
    }

    
    public void windowClosing( java.awt.event.WindowEvent oj_param0 )
    {
        return;
    }

}