01: /*
02: * This is free software, licensed under the Gnu Public License (GPL)
03: * get a copy from <http://www.gnu.org/licenses/gpl.html>
04: * $Id: Interruptable.java,v 1.1 2002/06/10 17:38:11 hzeller Exp $
05: * author: Henner Zeller <H.Zeller@acm.org>
06: */
07: package henplus;
08:
09: /**
10: * document me.
11: */
12: public interface Interruptable {
13: void interrupt();
14: }
15:
16: /*
17: * Local variables:
18: * c-basic-offset: 4
19: * compile-command: "ant -emacs -find build.xml"
20: * End:
21: */
|