01: package org.osbl.client.wings.devtools;
02:
03: import javax.swing.*;
04: import java.util.List;
05:
06: /**
07: * TODO: document me!!!
08: * <p/>
09: * <code>DevelopmentActionsProvider</code>.
10: * User: rro
11: * Date: 31.07.2006
12: * Time: 08:38:07
13: *
14: * @author Roman Rädle
15: * @version $Revision$
16: */
17: public interface DevelopmentActionsProvider {
18: public List<Action> getDevelopmentActions();
19: }
|