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: * Emitted after removing a proof task
17: * @author bubel
18: */
19: public class AbandonTaskEvent extends NotificationEvent {
20:
21: /**
22: * creates an event
23: */
24: public AbandonTaskEvent() {
25: super(NotificationEventID.TASK_ABANDONED);
26: }
27:
28: }
|