public interface IToggleGUI extends IToggle
IToggle
interface
to include actions that directly use the mouse.IToggle}
Modifier and Type | Method and Description |
---|---|
void |
clickToState(MouseModifiers modifiers,
State state)
Performs the necessary mouse actions to attain the
desired state for the associated component.
|
void |
clickToState(State state)
Performs the necessary mouse actions to attain the
desired state for the associated component.
|
void |
dragToState(MouseModifiers modifiers,
State state)
Performs the necessary mouse actions to attain the
desired state for the associated component.
|
void |
dragToState(State state)
Performs the necessary mouse actions to attain the
desired state for the associated component.
|
void clickToState(State state)
state
- the desired target state for the associated
componentnewCustomer.clickToState(SELECTED)
void clickToState(MouseModifiers modifiers, State state)
modifiers
- the mouse modifiers used to attain the
desired statestate
- the desired target state for the associated
componentnewCustomer.clickToState(LEFT,SELECTED)
void dragToState(State state)
state
- the desired target state for the associated
componentnewCustomer.dragToState(SELECTED)
void dragToState(MouseModifiers modifiers, State state)
modifiers
- the mouse modifiers used to attain the
desired statestate
- the desired target state for the associated
componentnewCustomer.dragToState(LEFT,SELECTED)