01: package jsint;
02:
03: /**
04: * This is the parent class for the Java Listeners.
05: * There are several subclasses corresponding to each of the
06: * various extensions of Java. Each extension adds a few
07: * listeners.
08: * @author Timothy J. Hickey, Copyright (c) 2000, tim@cs.brandeis.edu <a href="license.txt">license</a>
09: * subsequently modified by Jscheme project members
10: * licensed under zlib licence (see license.txt)
11: */
12:
13: public class JavaListener {
14: public Procedure handler;
15:
16: public JavaListener() {
17: super ();
18: }
19:
20: public JavaListener(Procedure handler) {
21: this.handler = handler;
22: }
23: }
|