Package org.teamapps.dto
Class UiRootPanel.SetGlobalKeyEventsEnabledCommand
- java.lang.Object
-
- org.teamapps.dto.UiRootPanel.SetGlobalKeyEventsEnabledCommand
-
- All Implemented Interfaces:
UiCommand<java.lang.Void>
- Enclosing class:
- UiRootPanel
public static class UiRootPanel.SetGlobalKeyEventsEnabledCommand extends java.lang.Object implements UiCommand<java.lang.Void>
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanincludeRepeatsprotected booleankeyDownprotected booleankeyUpprotected booleanmodifiedWithAltKeyprotected booleanmodifiedWithCtrlKeyprotected booleanmodifiedWithMetaKeyprotected booleanunmodified
-
Constructor Summary
Constructors Constructor Description SetGlobalKeyEventsEnabledCommand()Deprecated.Only for Jackson deserialization.SetGlobalKeyEventsEnabledCommand(boolean unmodified, boolean modifiedWithAltKey, boolean modifiedWithCtrlKey, boolean modifiedWithMetaKey, boolean includeRepeats, boolean keyDown, boolean keyUp)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetComponentId()booleangetIncludeRepeats()booleangetKeyDown()booleangetKeyUp()booleangetModifiedWithAltKey()booleangetModifiedWithCtrlKey()booleangetModifiedWithMetaKey()booleangetUnmodified()java.lang.StringtoString()
-
-
-
Field Detail
-
unmodified
protected boolean unmodified
-
modifiedWithAltKey
protected boolean modifiedWithAltKey
-
modifiedWithCtrlKey
protected boolean modifiedWithCtrlKey
-
modifiedWithMetaKey
protected boolean modifiedWithMetaKey
-
includeRepeats
protected boolean includeRepeats
-
keyDown
protected boolean keyDown
-
keyUp
protected boolean keyUp
-
-
Constructor Detail
-
SetGlobalKeyEventsEnabledCommand
@Deprecated public SetGlobalKeyEventsEnabledCommand()
Deprecated.Only for Jackson deserialization. Use the other constructor instead.
-
SetGlobalKeyEventsEnabledCommand
public SetGlobalKeyEventsEnabledCommand(boolean unmodified, boolean modifiedWithAltKey, boolean modifiedWithCtrlKey, boolean modifiedWithMetaKey, boolean includeRepeats, boolean keyDown, boolean keyUp)
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getUnmodified
public boolean getUnmodified()
-
getModifiedWithAltKey
public boolean getModifiedWithAltKey()
-
getModifiedWithCtrlKey
public boolean getModifiedWithCtrlKey()
-
getModifiedWithMetaKey
public boolean getModifiedWithMetaKey()
-
getIncludeRepeats
public boolean getIncludeRepeats()
-
getKeyDown
public boolean getKeyDown()
-
getKeyUp
public boolean getKeyUp()
-
getComponentId
public java.lang.String getComponentId()
- Specified by:
getComponentIdin interfaceUiCommand<java.lang.Void>
-
-