View Javadoc
1   package com.github.celldynamics.quimp.plugin;
2   
3   import ij.plugin.filter.PlugInFilter;
4   
5   /**
6    * Interface for plugin filter 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 IQuimpFilter extends PlugInFilter {
14  
15    /**
16     * Return plugin description.
17     * 
18     * @return Plugin description
19     */
20    public String about();
21  }