|
org.netbeans.api.debugger.jpda/2 2.13 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.netbeans.api.debugger.Breakpoint
org.netbeans.api.debugger.jpda.JPDABreakpoint
org.netbeans.api.debugger.jpda.FieldBreakpoint
public class FieldBreakpoint
Notifies about variable change or access events.
How to use it:
DebuggerManager.addBreakpoint (FieldBreakpoint.create ( "org.netbeans.modules.editor.EditorPanel", "state", FieldBreakpoint.TYPE_MODIFICATION ));This breakpoint stops when state field of EditorPanel class is modified.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class org.netbeans.api.debugger.Breakpoint |
---|
Breakpoint.HIT_COUNT_FILTERING_STYLE, Breakpoint.VALIDITY |
Field Summary | |
---|---|
static String |
PROP_BREAKPOINT_TYPE
Property name constant. |
static String |
PROP_CLASS_NAME
Property name constant. |
static String |
PROP_CONDITION
Property name constant. |
static String |
PROP_FIELD_NAME
Property name constant. |
static String |
PROP_INSTANCE_FILTERS
Property name constant |
static String |
PROP_THREAD_FILTERS
Property name constant |
static int |
TYPE_ACCESS
Property type value constant. |
static int |
TYPE_MODIFICATION
Property type value constant. |
Fields inherited from class org.netbeans.api.debugger.jpda.JPDABreakpoint |
---|
PROP_HIDDEN, PROP_PRINT_TEXT, PROP_SUSPEND, SUSPEND_ALL, SUSPEND_EVENT_THREAD, SUSPEND_NONE |
Fields inherited from class org.netbeans.api.debugger.Breakpoint |
---|
PROP_DISPOSED, PROP_ENABLED, PROP_GROUP_NAME, PROP_HIT_COUNT_FILTER, PROP_VALIDITY |
Method Summary | |
---|---|
static FieldBreakpoint |
create(String className,
String fieldName,
int breakpointType)
Creates a new breakpoint for given parameters. |
int |
getBreakpointType()
Returns type of breakpoint (one of TYPE_ACCESS and TYPE_MODIFICATION). |
String |
getClassName()
Get name of class the field is defined in. |
String |
getCondition()
Returns condition. |
String |
getFieldName()
Returns name of field. |
ObjectVariable[] |
getInstanceFilters(JPDADebugger session)
Get the instance filter for a specific debugger session. |
JPDAThread[] |
getThreadFilters(JPDADebugger session)
Get the thread filter for a specific debugger session. |
void |
setBreakpointType(int type)
Sets type of breakpoint. |
void |
setClassName(String className)
Set name of class the field is defined in. |
void |
setCondition(String cond)
Sets condition. |
void |
setFieldName(String name)
Sets name of field. |
void |
setInstanceFilters(JPDADebugger session,
ObjectVariable[] instances)
Set the instance filter for a specific debugger session. |
void |
setThreadFilters(JPDADebugger session,
JPDAThread[] threads)
Set the thread filter for a specific debugger session. |
String |
toString()
Returns a string representation of this object. |
Methods inherited from class org.netbeans.api.debugger.jpda.JPDABreakpoint |
---|
addJPDABreakpointListener, disable, enable, getPrintText, getSuspend, isEnabled, isHidden, removeJPDABreakpointListener, setHidden, setPrintText, setSuspend |
Methods inherited from class org.netbeans.api.debugger.Breakpoint |
---|
addPropertyChangeListener, addPropertyChangeListener, dispose, firePropertyChange, getGroupName, getHitCountFilter, getHitCountFilteringStyle, getValidity, getValidityMessage, removePropertyChangeListener, removePropertyChangeListener, setGroupName, setHitCountFilter, setValidity |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final String PROP_FIELD_NAME
public static final String PROP_CLASS_NAME
public static final String PROP_CONDITION
public static final String PROP_BREAKPOINT_TYPE
public static final String PROP_INSTANCE_FILTERS
public static final String PROP_THREAD_FILTERS
public static final int TYPE_ACCESS
public static final int TYPE_MODIFICATION
Method Detail |
---|
public static FieldBreakpoint create(String className, String fieldName, int breakpointType)
className
- class namefieldName
- name of fieldbreakpointType
- one of constants: TYPE_ACCESS,
TYPE_MODIFICATION
public String getClassName()
public void setClassName(String className)
className
- a new name of class the field is defined inpublic String getFieldName()
public void setFieldName(String name)
name
- a name of fieldpublic ObjectVariable[] getInstanceFilters(JPDADebugger session)
null
when there is no instance restriction.public void setInstanceFilters(JPDADebugger session, ObjectVariable[] instances)
session
- the debugger sessioninstances
- the object instances or null
to unset the filter.public JPDAThread[] getThreadFilters(JPDADebugger session)
null
when there is no thread restriction.public void setThreadFilters(JPDADebugger session, JPDAThread[] threads)
session
- the debugger sessionthreads
- the threads or null
to unset the filter.public int getBreakpointType()
public void setBreakpointType(int type)
type
- a new type of breakpointpublic String getCondition()
public void setCondition(String cond)
cond
- a c new conditionpublic String toString()
|
org.netbeans.api.debugger.jpda/2 2.13 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |