|
ICY Version 1.0.1.0
|
This tutorial displays a simple message at the bottom of the screen, in a scrolling annonceFrame. A class is an ICY plugin as it extends icy.plugin.abstract_.Plugin It can then be visible in the menu if it implements icy.plugin.interface_.PluginImageAnalysis
public class HelloWorldPlugin extends Plugin implements PluginImageAnalysis { //This method will be called as the user click on the plugin button. @Override public void compute() { new AnnounceFrame("Hello ICY !"); } }
1.7.3