ICY Version 1.0.1.0

Tutorial: Hello World Plugin.

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

Author:
Fabrice de Chaumont & Stephane Dallongeville
 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 !");

           }

}
 All Classes Functions Variables