01: // This file is part of KeY - Integrated Deductive Software Design
02: // Copyright (C) 2001-2007 Universitaet Karlsruhe, Germany
03: // Universitaet Koblenz-Landau, Germany
04: // Chalmers University of Technology, Sweden
05: //
06: // The KeY system is protected by the GNU General Public License.
07: // See LICENSE.TXT for details.
08: /*
09: * Created on 18.03.2005
10: */
11: package de.uka.ilkd.key.gui.notification.events;
12:
13: import de.uka.ilkd.key.gui.notification.NotificationEventID;
14:
15: /**
16: * An exit key event indicating that KeY is currently shut down.
17: * @author bubel
18: */
19: public class ExitKeYEvent extends NotificationEvent {
20:
21: /**
22: * creates an event fired when KeY is shutdown
23: */
24: public ExitKeYEvent() {
25: super(NotificationEventID.EXIT_KEY);
26: }
27:
28: }
|