View Javadoc
1   package com.github.celldynamics.quimp.plugin;
2   
3   import ij.plugin.PlugIn;
4   
5   /**
6    * Interface for plugins used in QuimP Bar.
7    * 
8    * <p>Those plugins are stand alone instances that could be run outside the QuimP.
9    * 
10   * @author p.baniukiewicz
11   *
12   */
13  public interface IQuimpPlugin extends PlugIn {
14  
15    /**
16     * Return plugin description.
17     * 
18     * @return Plugin description
19     */
20    public String about();
21  }