| java.lang.Object org.netbeans.api.debugger.jpda.JPDAStep
JPDAStep | abstract public class JPDAStep (Code) | | Represents one JPDA step.
author: Roman Ondruska |
PROP_STATE_EXEC | final public static String PROP_STATE_EXEC(Code) | | Property fired when the step is executed
|
STEP_INTO | final public static int STEP_INTO(Code) | | Step into any newly pushed frames
|
STEP_LINE | final public static int STEP_LINE(Code) | | Step to the next location on a different line
|
STEP_MIN | final public static int STEP_MIN(Code) | | Step to the next available location
|
STEP_OPERATION | final public static int STEP_OPERATION(Code) | | Step to the next available operation
|
STEP_OUT | final public static int STEP_OUT(Code) | | Step out of the current frame
|
STEP_OVER | final public static int STEP_OVER(Code) | | Step over any newly pushed frames
|
addPropertyChangeListener | public void addPropertyChangeListener(PropertyChangeListener l)(Code) | | Adds property change listener.
Parameters: l - new listener. |
addPropertyChangeListener | public void addPropertyChangeListener(String propertyName, PropertyChangeListener l)(Code) | | Adds property change listener.
Parameters: l - new listener. |
getDepth | public int getDepth()(Code) | | Returns depth of the step.
step depth |
getHidden | public boolean getHidden()(Code) | | Returns hidden property of the step.
hidden property |
getSize | public int getSize()(Code) | | Returns size of the step.
step size |
removePropertyChangeListener | public void removePropertyChangeListener(PropertyChangeListener l)(Code) | | Removes property change listener.
Parameters: l - removed listener. |
removePropertyChangeListener | public void removePropertyChangeListener(String propertyName, PropertyChangeListener l)(Code) | | Removes property change listener.
Parameters: l - removed listener. |
setDepth | public void setDepth(int depth)(Code) | | Sets depth of the step.
Parameters: depth - step depth |
setHidden | public void setHidden(boolean hidden)(Code) | | Sets the hidden property.
|
setSize | public void setSize(int size)(Code) | | Sets size of the step.
Parameters: size - step size |
|
|