VALUE - is the generic type of the selectable values.public interface AttributeWriteSelectedValueAdvanced<VALUE> extends AttributeWriteSelectedValue<VALUE>
value(s)
of an object.| Modifier and Type | Method and Description |
|---|---|
boolean |
isFirstValueSelected() |
boolean |
isLastValueSelected() |
boolean |
isValueSelected(VALUE value) |
boolean |
setFirstValueSelected(boolean selected)
This method updates the selection state of the first value of this object (e.g.
|
boolean |
setLastValueSelected(boolean selected)
This method updates the selection state of the last value of this object (e.g.
|
boolean |
setValueSelected(VALUE value,
boolean selected)
This method updates the selection state of the specified
value. |
setSelectedValue, setSelectedValuesgetSelectedValue, getSelectedValues, getSelectionCount, hasSelectedValueboolean isFirstValueSelected()
true if the first value is selected, false otherwise (if the first
value is not selected or does not exists).boolean isLastValueSelected()
true if the last value is selected, false otherwise (if the first value
is not selected or does not exists).boolean isValueSelected(VALUE value)
value - is the value to check the selection state of.true if the given value is selected, false otherwise (if
value is not selected or is not a value contained in this object).boolean setFirstValueSelected(boolean selected)
selected - - true to select the value, false to deselect it.true if the selection of the specified value has been changed, false
otherwise (if no such value exists).boolean setLastValueSelected(boolean selected)
selected - - true to select the value, false to deselect it.true if the selection of the specified value has been changed, false
otherwise (if no such value exists).boolean setValueSelected(VALUE value, boolean selected)
value. If the valuevalue - is the value to change the selection state of.selected - - true to select the value, false to deselect it.true if the selection of the specified value has been changed, false
otherwise (if no such value exists).Copyright © 2001–2016 mmm-Team. All rights reserved.