Skip to content

Commit 4afbd19

Browse files
author
Luca Lutterotti
committed
Version 2.9997
1 parent 8f4a420 commit 4afbd19

File tree

390 files changed

+139096
-257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

390 files changed

+139096
-257
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ build/
33
build_numbers/
44
cctbxForMaud/
55
codestyles/
6-
ImageJ/
76
inspection/
87
Installers/
98
script_files/

ImageJ/IJ_Props.txt

Lines changed: 451 additions & 0 deletions
Large diffs are not rendered by default.

ImageJ/MANIFEST.MF

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Manifest-Version: 1.0
2+
Ant-Version: Apache Ant 1.8.2
3+
Created-By: 1.6.0_33-b03-424-10M3720 (Apple Inc.)
4+
Main-Class: ij.ImageJ
5+

ImageJ/ij/CommandListener.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package ij;
2+
3+
/** Plugins that implement this interface are notified when ImageJ
4+
is about to run a menu command. There is an example plugin at
5+
http://imagej.nih.gov/ij/plugins/download/misc/Command_Listener.java
6+
*/
7+
public interface CommandListener {
8+
9+
/* The method is called when ImageJ is about to run a menu command,
10+
where 'command' is the name of the command. Return this string
11+
and ImageJ will run the command, return a different command name
12+
and ImageJ will run that command, or return null to not run a command.
13+
*/
14+
public String commandExecuting(String command);
15+
16+
}

0 commit comments

Comments
 (0)