@Deprecated
public abstract class DebuggerEventSource
extends oracle.ideimpl.debugger.event.CommonEventSourceBase
DebuggerAdapter,
DebuggerListener| Modifier and Type | Class and Description |
|---|---|
static class |
DebuggerEventSource.StackFrame
Deprecated.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
DEBUGGER_STATE_FINISHED_CONNECTIONLOST
Deprecated.
The debugger state for finished because the connection was lost unexpectedly.
|
static int |
DEBUGGER_STATE_FINISHED_DETACH
Deprecated.
The debugger state for finished because the user chose to detach.
|
static int |
DEBUGGER_STATE_FINISHED_PROGRAMEXIT
Deprecated.
The debugger state for finished because the program exited.
|
static int |
DEBUGGER_STATE_FINISHED_TERMINATE
Deprecated.
The debugger state for finished because the user chose to terminate.
|
static int |
DEBUGGER_STATE_RESUMING_CONTINUESTEP
Deprecated.
The debugger state for resuming because the user chose to continue step.
|
static int |
DEBUGGER_STATE_RESUMING_RESUME
Deprecated.
The debugger state for resuming because the user chose to resume.
|
static int |
DEBUGGER_STATE_RESUMING_RUNTOCURSOR
Deprecated.
The debugger state for resuming because the user chose to run to cursor.
|
static int |
DEBUGGER_STATE_RESUMING_STEPINTO
Deprecated.
The debugger state for resuming because the user chose to step into.
|
static int |
DEBUGGER_STATE_RESUMING_STEPINTOMETHOD
Deprecated.
The debugger state for resuming because the user chose to step into method.
|
static int |
DEBUGGER_STATE_RESUMING_STEPOUT
Deprecated.
The debugger state for resuming because the user chose to step out.
|
static int |
DEBUGGER_STATE_RESUMING_STEPOVER
Deprecated.
The debugger state for resuming because the user chose to step over.
|
static int |
DEBUGGER_STATE_RESUMING_STEPTOENDOFMETHOD
Deprecated.
The debugger state for resuming because the user chose to step to end of method.
|
static int |
DEBUGGER_STATE_STARTING
Deprecated.
The debugger state for starting.
|
static int |
DEBUGGER_STATE_STOPPING_BREAKPOINT
Deprecated.
The debugger state for stopping because a breakpoint has been hit.
|
static int |
DEBUGGER_STATE_STOPPING_FINISHEDSTEPPING
Deprecated.
The debugger state for stopping because a stop command has completed.
|
static int |
DEBUGGER_STATE_STOPPING_PAUSED
Deprecated.
The debugger state for stopping because the user chose to pause.
|
static int |
LANGUAGE_ANT
Deprecated.
The language may be ANT
|
static int |
LANGUAGE_JAVA
Deprecated.
The language may be Java
|
static int |
LANGUAGE_JAVASCRIPT
Deprecated.
The language may be JAVASCRIPT
|
static int |
LANGUAGE_PLSQL
Deprecated.
The language may be PLSQL
|
static int |
LANGUAGE_UNKNOWN
Deprecated.
The language may be unknown
|
static int |
LANGUAGE_XSLT
Deprecated.
The language may be XSLT
|
| Constructor and Description |
|---|
DebuggerEventSource()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
Context |
getContext()
Deprecated.
Get the context of the debugging process that send this event
|
abstract int |
getLanguages()
Deprecated.
Returns the languages that this debugger might be debugging.
|
abstract DebuggerEventSource.StackFrame[] |
getStackFrames()
Deprecated.
Returns the stack frames for the current thread, when the debugger
event type is
DEBUGGER_STOPPING. |
abstract int |
getState()
Deprecated.
Returns the state of the debugger.
|
java.lang.String |
getTopOfStackClassName()
Deprecated.
|
public static final int LANGUAGE_UNKNOWN
public static final int LANGUAGE_JAVA
public static final int LANGUAGE_PLSQL
public static final int LANGUAGE_XSLT
public static final int LANGUAGE_ANT
public static final int LANGUAGE_JAVASCRIPT
public static final int DEBUGGER_STATE_STARTING
public static final int DEBUGGER_STATE_STOPPING_BREAKPOINT
public static final int DEBUGGER_STATE_STOPPING_FINISHEDSTEPPING
public static final int DEBUGGER_STATE_STOPPING_PAUSED
public static final int DEBUGGER_STATE_RESUMING_RESUME
public static final int DEBUGGER_STATE_RESUMING_STEPOVER
public static final int DEBUGGER_STATE_RESUMING_STEPINTO
public static final int DEBUGGER_STATE_RESUMING_STEPOUT
public static final int DEBUGGER_STATE_RESUMING_STEPTOENDOFMETHOD
public static final int DEBUGGER_STATE_RESUMING_CONTINUESTEP
public static final int DEBUGGER_STATE_RESUMING_RUNTOCURSOR
public static final int DEBUGGER_STATE_RESUMING_STEPINTOMETHOD
public static final int DEBUGGER_STATE_FINISHED_PROGRAMEXIT
public static final int DEBUGGER_STATE_FINISHED_CONNECTIONLOST
public static final int DEBUGGER_STATE_FINISHED_TERMINATE
public static final int DEBUGGER_STATE_FINISHED_DETACH
public abstract int getLanguages()
LANGUAGE_UNKNOWN
LANGUAGE_JAVA
LANGUAGE_PLSQL
LANGUAGE_XSLT
LANGUAGE_ANT
LANGUAGE_JAVASCRIPTgetLanguages in class oracle.ideimpl.debugger.event.CommonEventSourceBasepublic abstract int getState()
DEBUGGER_STARTING, this method will return one of the
following states:
DEBUGGER_STATE_STARTING
DEBUGGER_STOPPING, this method will return one of the
following states:
DEBUGGER_STATE_STOPPING_BREAKPOINT
DEBUGGER_STATE_STOPPING_FINISHEDSTEPPING
DEBUGGER_STATE_STOPPING_PAUSED
DEBUGGER_RESUMING, this method will return one of the
following states:
DEBUGGER_STATE_RESUMING_RESUME
DEBUGGER_STATE_RESUMING_RESUME
DEBUGGER_STATE_RESUMING_STEPOVER
DEBUGGER_STATE_RESUMING_STEPINTO
DEBUGGER_STATE_RESUMING_STEPOUT
DEBUGGER_STATE_RESUMING_STEPTOENDOFMETHOD
DEBUGGER_STATE_RESUMING_CONTINUESTEP
DEBUGGER_STATE_RESUMING_RUNTOCURSOR
DEBUGGER_STATE_RESUMING_STEPINTOMETHOD
DEBUGGER_FINISHED, this method will return one of the
following states:
DEBUGGER_STATE_FINISHED_PROGRAMEXIT
DEBUGGER_STATE_FINISHED_CONNECTIONLOST
DEBUGGER_STATE_FINISHED_TERMINATE
DEBUGGER_STATE_FINISHED_DETACH
getState in class oracle.ideimpl.debugger.event.CommonEventSourceBasepublic abstract DebuggerEventSource.StackFrame[] getStackFrames()
DEBUGGER_STOPPING.
If the debugger event type is DEBUGGER_STARTING,
DEBUGGER_RESUMING, or DEBUGGER_FINISHED,
this method will return null.
getStackFrames in class oracle.ideimpl.debugger.event.CommonEventSourceBasepublic Context getContext()
getContext in class oracle.ideimpl.debugger.event.CommonEventSourceBasepublic java.lang.String getTopOfStackClassName()
getTopOfStackClassName in class oracle.ideimpl.debugger.event.CommonEventSourceBase