Package | Description |
---|---|
com.github.mkolisnyk.sirius.client.ui.controls |
Common package for classes representing page controls.
|
com.github.mkolisnyk.sirius.client.ui.predicates |
Common storage for all core predicates.
|
Modifier and Type | Class and Description |
---|---|
class |
CheckBox
Wrapper class which is abstraction over the check box elements
of any similar looking elements which have checked/unchecked state.
|
class |
Edit
Control extension which corresponds to the edit control.
|
class |
RadioButton
Wrapper class which is abstraction over the radio buttons or any other similar
items which can be checked.
|
class |
SelectList
Control extension which wraps Select instance and corresponds to the list objects
(e.g.
|
Modifier and Type | Method and Description |
---|---|
Editable |
Editable.set(Operation<? extends Editable,Editable> predicate)
.
|
Editable |
CheckBox.setState(boolean checked)
Sets checked/unchecked state depending on input parameter.
|
Editable |
SelectList.setValue(java.lang.String value) |
Editable |
RadioButton.setValue(java.lang.String value) |
abstract Editable |
Editable.setValue(java.lang.String value)
Common method for setting values.
|
Editable |
Edit.setValue(java.lang.String value) |
Editable |
CheckBox.setValue(java.lang.String value) |
Modifier and Type | Method and Description |
---|---|
Editable |
Editable.set(Operation<? extends Editable,Editable> predicate)
.
|
Editable |
Editable.set(Operation<? extends Editable,Editable> predicate)
.
|
Modifier and Type | Method and Description |
---|---|
static Operation<Editable,Control> |
Actions.clear()
Predicate which clears field content.
|
static Operation<Editable,Editable> |
Setters.value(java.lang.String text)
Predicate for setting value for the control.
|
static Operation<Editable,Editable> |
Setters.value(java.lang.String text)
Predicate for setting value for the control.
|