Interface ITool
public interface ITool
Interface for ATL VM debuggers (or other tools like profilers).
-
Method Summary
Modifier and TypeMethodDescriptionvoid
enter
(AbstractStackFrame frame) Enters the frame.void
error
(AbstractStackFrame frame, String msg, Exception e) Throws an error.void
leave
(AbstractStackFrame frame) Leaves the frame.void
step
(AbstractStackFrame frame) Steps into the frame.void
Terminates the execution.
-
Method Details
-
enter
Enters the frame.- Parameters:
frame
- the frame to enter in
-
leave
Leaves the frame.- Parameters:
frame
- the frame to leave
-
step
Steps into the frame.- Parameters:
frame
- the frame to step
-
terminated
void terminated()Terminates the execution. -
error
Throws an error.- Parameters:
frame
- the current framemsg
- the error messagee
- the exception
-