com.bluemarsh.jswat.breakpoint
Interface Condition
- All Superinterfaces:
- java.io.Serializable
- All Known Implementing Classes:
- ValueCondition
- public interface Condition
- extends java.io.Serializable
Interface Condition defines a breakpoint conditional.
- Author:
- Nathan Fiedler
Method Summary |
ConditionUI |
getUIAdapter()
Returns the user interface widget for customizing this condition. |
boolean |
isSatisfied(com.sun.jdi.event.Event event)
Returns true if this condition is satisfied. |
getUIAdapter
public ConditionUI getUIAdapter()
- Returns the user interface widget for customizing this condition.
- Returns:
- Condition user interface adapter.
isSatisfied
public boolean isSatisfied(com.sun.jdi.event.Event event)
throws java.lang.Exception
- Returns true if this condition is satisfied.
- Parameters:
event
- JDI Event that brought us here.- Returns:
- True if satisfied, false otherwise.