| |
|
| java.lang.Object org.netbeans.api.debugger.Watch
Watch | final public class Watch (Code) | | Abstract definition of watch. Each watch is created for
one String which contains the name of variable or some expression.
author: Jan Jancura |
Field Summary | |
final public static String | PROP_EXPRESSION Name of the property for the watched expression. | final public static String | PROP_VALUE Name of the property for the value of the watched expression. |
PROP_EXPRESSION | final public static String PROP_EXPRESSION(Code) | | Name of the property for the watched expression.
|
PROP_VALUE | final public static String PROP_VALUE(Code) | | Name of the property for the value of the watched expression. This constant is not used at all.
|
addPropertyChangeListener | public void addPropertyChangeListener(PropertyChangeListener l)(Code) | | Add a property change listener.
Parameters: l - the listener to add |
getExpression | public String getExpression()(Code) | | Return expression this watch is created for.
expression this watch is created for |
remove | public void remove()(Code) | | Remove the watch from the list of all watches in the system.
|
removePropertyChangeListener | public void removePropertyChangeListener(PropertyChangeListener l)(Code) | | Remove a property change listener.
Parameters: l - the listener to remove |
setExpression | public void setExpression(String expression)(Code) | | Set the expression to watch.
Parameters: expression - expression to watch |
|
|
|