Class TriggerHotkeyBySequence.KeyModifiers
- java.lang.Object
-
- nl.harm27.obs.websocket.api.requests.general.TriggerHotkeyBySequence.KeyModifiers
-
- Enclosing class:
- TriggerHotkeyBySequence
public class TriggerHotkeyBySequence.KeyModifiers extends Object
-
-
Constructor Summary
Constructors Constructor Description KeyModifiers()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isAlt()
Trigger Alt Keyboolean
isCommand()
Trigger Command Key (Mac)boolean
isControl()
Trigger Control (Ctrl) Keyboolean
isShift()
Trigger Shift Keyvoid
setAlt(boolean alt)
Trigger Alt Keyvoid
setCommand(boolean command)
Trigger Command Key (Mac)void
setControl(boolean control)
Trigger Control (Ctrl) Keyvoid
setShift(boolean shift)
Trigger Shift Key
-
-
-
Method Detail
-
isShift
public boolean isShift()
Trigger Shift Key
-
setShift
public void setShift(boolean shift)
Trigger Shift Key
-
isAlt
public boolean isAlt()
Trigger Alt Key
-
setAlt
public void setAlt(boolean alt)
Trigger Alt Key
-
isControl
public boolean isControl()
Trigger Control (Ctrl) Key
-
setControl
public void setControl(boolean control)
Trigger Control (Ctrl) Key
-
isCommand
public boolean isCommand()
Trigger Command Key (Mac)
-
setCommand
public void setCommand(boolean command)
Trigger Command Key (Mac)
-
-