01: /*--------------------------------------------------------------------------*
02: | Copyright (C) 2006 Christopher Kohlhaas |
03: | |
04: | This program is free software; you can redistribute it and/or modify |
05: | it under the terms of the GNU General Public License as published by the |
06: | Free Software Foundation. A copy of the license has been included with |
07: | these distribution in the COPYING file, if not go to www.fsf.org |
08: | |
09: | As a special exception, you are granted the permissions to link this |
10: | program with every library, which license fulfills the Open Source |
11: | Definition as published by the Open Source Initiative (OSI). |
12: *--------------------------------------------------------------------------*/
13: package org.rapla.gui.toolkit;
14:
15: import javax.swing.ActionMap;
16:
17: public interface WizardPanel extends RaplaWidget {
18: String NEXT = "next";
19: String ABORT = "abort";
20: String PREV = "prev";
21: String FINISH = "finish";
22:
23: public ActionMap getActionMap();
24:
25: public String getHelp();
26:
27: public String getDefaultAction();
28:
29: }
|