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 booleanisAlt()Trigger Alt KeybooleanisCommand()Trigger Command Key (Mac)booleanisControl()Trigger Control (Ctrl) KeybooleanisShift()Trigger Shift KeyvoidsetAlt(boolean alt)Trigger Alt KeyvoidsetCommand(boolean command)Trigger Command Key (Mac)voidsetControl(boolean control)Trigger Control (Ctrl) KeyvoidsetShift(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)
-
-