File: PlugIn.java

package info (click to toggle)
imagej 1.52j-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,604 kB
  • sloc: java: 120,017; sh: 279; xml: 161; makefile: 6
file content (13 lines) | stat: -rw-r--r-- 392 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
package ij.plugin;

/** Plugins that acquire images or display windows should
	implement this interface. Plugins that process images 
	should implement the PlugInFilter interface. */
public interface PlugIn {

	/** This method is called when the plugin is loaded.
		'arg', which may be blank, is the argument specified
		for this plugin in IJ_Props.txt. */ 
	public void run(String arg);
	
}