File: Debugger.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 (10 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
package ij.macro;

	public interface Debugger {

		public static final int NOT_DEBUGGING=0, STEP=1, TRACE=2, FAST_TRACE=3,
			RUN_TO_COMPLETION=4, RUN_TO_CARET=5;
		
		public int debug(Interpreter interp, int mode);
			
}