01: /*
02: * $Id: InterruptHandler.java,v 1.1 2005/12/14 10:53:03 hzeller Exp $
03: * (c) Copyright 2005 freiheit.com technologies GmbH
04: *
05: * This file contains unpublished, proprietary trade secret information of
06: * freiheit.com technologies GmbH. Use, transcription, duplication and
07: * modification are strictly prohibited without prior written consent of
08: * freiheit.com technologies GmbH.
09: */
10: package henplus;
11:
12: public interface InterruptHandler {
13:
14: void pushInterruptable(Interruptable t);
15:
16: void popInterruptable();
17:
18: void reset();
19:
20: }
|