Package | Description |
---|---|
org.netbeans.api.debugger |
The NetBeans Debugger Core API definition.
|
Modifier and Type | Method and Description |
---|---|
Watch |
DebuggerManager.createPinnedWatch(String expr,
Watch.Pin pin)
Create a watch pinned at the specified pin location.
|
Watch |
DebuggerManager.createWatch(int index,
String expr)
Creates a watch with its expression set to an initial value
and add it at the specific position
|
Watch |
DebuggerManager.createWatch(String expr)
Creates a watch with its expression set to an initial value.
|
Watch[] |
DebuggerManager.getWatches()
Gets all shared watches in the system.
|
Modifier and Type | Method and Description |
---|---|
void |
DebuggerManagerAdapter.watchAdded(Watch watch)
Called when some watch is added.
|
void |
DebuggerManagerListener.watchAdded(Watch watch)
Called when some watch is added.
|
void |
DebuggerManagerAdapter.watchRemoved(Watch watch)
Called when some watch is removed.
|
void |
DebuggerManagerListener.watchRemoved(Watch watch)
Called when some watch is removed.
|