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 | void init(Editor editor); |
| 35 | |
| 36 | void run(); |
| 37 | |
| 38 | String getMenuTitle(); |
| 39 | |
| 40 | } |
| 41 |
no outgoing calls
no test coverage detected