Plugins that acquire images or display windows should implement this interface. Plugins that process images should implement the PlugInFilter interface.
| 4 | implement this interface. Plugins that process images |
| 5 | should implement the PlugInFilter interface. */ |
| 6 | public interface PlugIn { |
| 7 | |
| 8 | /** This method is called when the plugin is loaded. |
| 9 | 'arg', which may be blank, is the argument specified |
| 10 | for this plugin in IJ_Props.txt. */ |
| 11 | public void run(String arg); |
| 12 | |
| 13 | } |
no outgoing calls
no test coverage detected