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 03.03.2005
10: */
11: package de.uka.ilkd.key.gui.notification;
12:
13: import de.uka.ilkd.key.gui.notification.events.NotificationEvent;
14:
15: /**
16: * this interface is implemented by notification actions
17: * @author bubel
18: */
19: public interface NotificationAction {
20:
21: /**
22: * executes the action
23: * @param event the NotificationEvent triggering this action
24: * @return indicator if action has been executed successfully
25: */
26: boolean execute(NotificationEvent event);
27: }
|