View Javadoc
1   package com.github.celldynamics.quimp.plugin;
2   
3   import ij.plugin.filter.PlugInFilter;
4   
5   /**
6    * This interface supports plugins used in QuimP Bar.
7    * 
8    * <p>Those plugins are stand alone instances that could be run outside the QuimP.
9    * 
10   * <p>This interface is for future use. It combines IJ plugins and QuimP plugins. If user
11   * implemented
12   * all methods from parent interfaces, the plugin would be used in both IJ and QuimP.
13   * 
14   * @author p.baniukiewicz
15   *
16   */
17  public interface IQuimpPluginFilter extends IQuimpCorePlugin, PlugInFilter {
18  
19  }