source: osm/applications/editors/josm/plugins/smed/src/smed/plug/ifc/SmedPluggable.java@ 23244

Last change on this file since 23244 was 23244, checked in by postfix, 14 years ago

first really good working framework smed

  • Property svn:executable set to *
File size: 266 bytes
Line 
1package smed.plug.ifc;
2
3import javax.swing.JComponent;
4
5
6public interface SmedPluggable {
7
8 boolean start();
9 boolean stop();
10 String getName();
11 String getInfo();
12 JComponent getComponent();
13
14 void setPluginManager(SmedPluginManager manager);
15
16}
17
Note: See TracBrowser for help on using the repository browser.