File: ImageListener.java

package info (click to toggle)
imagej 1.46a-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,248 kB
  • sloc: java: 89,778; sh: 311; xml: 51; makefile: 6
file content (13 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
package ij;

	/** Plugins that implement this interface are notified when
		an image window is opened, closed or updated. */
	public interface ImageListener {

	public void imageOpened(ImagePlus imp);

	public void imageClosed(ImagePlus imp);

	public void imageUpdated(ImagePlus imp);

}