public static interface DebuggingView.DVFrame
Modifier and Type | Method and Description |
---|---|
int |
getColumn()
Column location of the frame in the source code at
DebuggingView.DVFrame.getSourceURI() . |
int |
getLine()
Line location of the frame in the source code at
DebuggingView.DVFrame.getSourceURI() . |
String |
getName()
Get the name of the frame.
|
default String |
getSourceMimeType()
Get the source MIME type, if known.
|
URI |
getSourceURI()
Get URI of the source file associated with this frame, if any.
|
DebuggingView.DVThread |
getThread()
Get the thread of this frame.
|
void |
makeCurrent()
Make this frame current.
|
default void |
popOff()
Pop all frames up to and including this frame off the stack.
|
String getName()
DebuggingView.DVThread getThread()
void makeCurrent()
URI getSourceURI()
null
if the file is unknown.default String getSourceMimeType()
null
if the source, or
its MIME type is unknown.int getLine()
DebuggingView.DVFrame.getSourceURI()
.-1
if the line is unknownint getColumn()
DebuggingView.DVFrame.getSourceURI()
.-1
if the column is unknowndefault void popOff() throws UnsupportedOperationException, DebuggingView.PopException
UnsupportedOperationException
- thrown when popping of stack frames is not supported.DebuggingView.PopException
- when the pop frame operation fails.