Module io.github.mmm.ui.test.core
Package io.github.mmm.ui.test.widget
Class TestActiveValidatableWidget<V>
- java.lang.Object
-
- io.github.mmm.ui.api.widget.AbstractUiWidget
-
- io.github.mmm.ui.spi.widget.AbstractUiNativeWidget
-
- io.github.mmm.ui.spi.widget.AbstractUiNativeWidgetWrapper<Void>
-
- io.github.mmm.ui.test.widget.TestWidget
-
- io.github.mmm.ui.test.widget.TestActiveWidget
-
- io.github.mmm.ui.test.widget.TestActiveValidatableWidget<V>
-
- Type Parameters:
V- type ofvalue.
- All Implemented Interfaces:
EventSource<UiEvent,UiEventListener>,AttributeReadEnabled,AttributeReadId,AttributeReadValid,AttributeReadValue<V>,AttributeReadVisible,AttributeWriteEnabled,AttributeWriteId,AttributeWriteReadOnly,AttributeWriteText,AttributeWriteTooltip,AttributeWriteValidationFailure,AttributeWriteValue<V>,AttributeWriteValueForUser<V>,AttributeWriteVisible,UiActiveWidget,UiNativeWidget,UiWidget,UiValidatableWidget<V>,UiValuedWidget<V>,UiNativeWidgetWrapper<Void>
- Direct Known Subclasses:
TestDataList,TestInput
public abstract class TestActiveValidatableWidget<V> extends TestActiveWidget implements UiValidatableWidget<V>
Implementation ofUiInputusing JavaFx.- Since:
- 1.0.0
-
-
Field Summary
-
Fields inherited from class io.github.mmm.ui.test.widget.TestWidget
focussedWidget
-
Fields inherited from interface io.github.mmm.ui.api.attribute.AttributeWriteValidationFailure
STYLE_INVALID
-
Fields inherited from interface io.github.mmm.ui.api.widget.UiActiveWidget
ACCESS_KEY_NONE
-
Fields inherited from interface io.github.mmm.ui.api.widget.value.UiValidatableWidget
STYLE_MANDATORY
-
-
Constructor Summary
Constructors Constructor Description TestActiveValidatableWidget()The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetModificationTimestamp()VgetOriginalValue()Validator<? super V>getValidator()VgetValueOrThrow()protected voidsetMandatory(boolean mandatory)voidsetOriginalValue(V originalValue)voidsetValidator(Validator<? super V> validator)voidsetValue(V value, boolean forUser)-
Methods inherited from class io.github.mmm.ui.test.widget.TestActiveWidget
getAccessKey, isFocused, setAccessKey, setFocused
-
Methods inherited from class io.github.mmm.ui.test.widget.TestWidget
getText, getWidget, setEnabledNative, setIdNative, setReadOnlyNative, setText, setTooltipNative, setVisibleNative
-
Methods inherited from class io.github.mmm.ui.spi.widget.AbstractUiNativeWidgetWrapper
createDefaultStyles, createStyles, getId, getStyles, getTooltip, onStylesChanged, setId, setTooltip
-
Methods inherited from class io.github.mmm.ui.spi.widget.AbstractUiNativeWidget
addListener, dispose, doDispose, doGetEnabledState, doGetVisibleState, doSetEnabledState, doSetEnabledState, doSetValidationFailure, doSetVisibleState, doSetVisibleState, ensureHandlers, fireEvent, getEventAdapter, getParent, getProgrammaticEventType, getReadOnlyFixed, getValidationFailure, hasListeners, isDisposed, isEnabled, isInitiallyVisible, isReadOnly, isValid, isVisible, isVisibleWithoutRoot, registerHandlers, removeListener, requireNotDisposed, setEnabled, setParent, setProgrammaticEventType, setReadOnly, setReadOnlyFixed, setValidationFailure, setVisible, unwrap, validateDown
-
Methods inherited from class io.github.mmm.ui.api.widget.AbstractUiWidget
isEmpty, setParent, unwrap
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeReadId
getId
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeWriteId
setId
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeWriteTooltip
getTooltip, setTooltip
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeWriteValidationFailure
getValidationFailure, setValidationFailure, setValidationFailure
-
Methods inherited from interface io.github.mmm.event.EventSource
addListener, addListener, addWeakListener, removeListener
-
Methods inherited from interface io.github.mmm.ui.spi.widget.UiNativeWidgetWrapper
getTopWidget
-
Methods inherited from interface io.github.mmm.ui.api.widget.value.UiValidatableWidget
getValue, isValid, reset, setValue, setValueForUser
-
Methods inherited from interface io.github.mmm.ui.api.widget.UiWidget
cast, dispose, getParent, getReadOnlyFixed, getStyles, isDisposed, isEnabled, isEnabled, isFocused, isModified, isReadOnly, isVisible, isVisible, setEnabled, setEnabled, setFocused, setReadOnly, setReadOnlyFixed, setVisible, setVisible, validate, validate, validate, validateDown, validateUp
-
-
-
-
Method Detail
-
getValueOrThrow
public V getValueOrThrow()
- Specified by:
getValueOrThrowin interfaceUiValidatableWidget<V>- Returns:
- the current
value.
-
setValue
public void setValue(V value, boolean forUser)
- Specified by:
setValuein interfaceAttributeWriteValueForUser<V>- Specified by:
setValuein interfaceUiValidatableWidget<V>- Parameters:
value- the newvalue.forUser- -trueforUiValidatableWidget.setValueForUser(Object)andfalseforUiValidatableWidget.setValue(Object).
-
getOriginalValue
public V getOriginalValue()
- Specified by:
getOriginalValuein interfaceUiValidatableWidget<V>- Returns:
- the original value since it was last set via
UiValidatableWidget.setOriginalValue(Object)or most probably indirectly viaUiValidatableWidget.setValue(Object). If this widget ismodified,UiValidatableWidget.getValue()will return the current value as entered by the end-user while this method will still return the original value.
ATTENTION: The original value shall never be modified to avoid undesired side effects. Various features such asUiValidatableWidget.reset()rely on this fact. - See Also:
UiValidatableWidget.reset()
-
setOriginalValue
public void setOriginalValue(V originalValue)
- Specified by:
setOriginalValuein interfaceUiValidatableWidget<V>- Parameters:
originalValue- the new value ofUiValidatableWidget.getOriginalValue().
-
getValidator
public Validator<? super V> getValidator()
- Specified by:
getValidatorin interfaceUiValidatableWidget<V>- Returns:
- the
Validatorto validate thevalueof this input.
-
setValidator
public void setValidator(Validator<? super V> validator)
- Specified by:
setValidatorin interfaceUiValidatableWidget<V>- Parameters:
validator- the newvalidator. To add multiple validators, simply useComposedValidatororValidator.append(Validator...).
-
setMandatory
protected void setMandatory(boolean mandatory)
- Parameters:
mandatory- the mandatory (required) flag.
-
getModificationTimestamp
public long getModificationTimestamp()
- Specified by:
getModificationTimestampin interfaceUiWidget- Returns:
- the timestamp of the last change to this widget. Will be
-1if it notmodified.
-
-