File: RoiListener.java

package info (click to toggle)
imagej 1.54g-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,520 kB
  • sloc: java: 132,209; sh: 286; xml: 255; makefile: 6
file content (18 lines) | stat: -rw-r--r-- 536 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package ij.gui;
import ij.ImagePlus;
	
	/** Plugins that implement this interface are notified when
		an ROI is created, modified or deleted. The 
		Plugins/Utilities/Monitor Events command uses this interface.
	*/
	public interface RoiListener {
		public static final int CREATED = 1;
		public static final int MOVED = 2;
		public static final int MODIFIED = 3;
		public static final int EXTENDED = 4;
		public static final int COMPLETED = 5;
		public static final int DELETED = 6;

	public void roiModified(ImagePlus imp, int id);

}