summaryrefslogtreecommitdiff
path: root/tutorial/examples/autoimp/Test.oj
blob: 9f2297293ed59b57bfd68ecf5a359eb308e64a57 (plain)
1
2
3
4
5
6
7
8
/* quick implementation! */
package examples.autoimp;
import java.awt.event.*;
public class Test instantiates AutoImplementerClass
    implements WindowListener
{
    public void windowClosed( WindowEvent e ) { System.exit( 0 ); }
}