Interface for items to be shown in the Tools menu.
| 30 | * Interface for items to be shown in the Tools menu. |
| 31 | */ |
| 32 | public interface Tool extends Runnable { |
| 33 | |
| 34 | public void init(Base base); |
| 35 | |
| 36 | public void run(); |
| 37 | |
| 38 | // Not doing shortcuts for now, no way to resolve between tools. |
| 39 | // Also would need additional modifiers for shift and alt. |
| 40 | //public char getShortcutKey(); |
| 41 | |
| 42 | public String getMenuTitle(); |
| 43 | } |
| 44 |
no outgoing calls
no test coverage detected