public interface PickList
Modifier and Type | Method and Description |
---|---|
PickList |
add(ChoicePicker picker)
Picks and adds value from source list to target list.
|
PickList |
add(int index)
Picks and adds value from source list to target list.
|
PickList |
add(String match)
Picks and adds value from source list to target list.
|
PickList |
addAll()
Picks and adds all values from source list to target list.
|
PickList |
addMultiple(MultipleChoicePicker picker)
Picks and adds multiple values from source list to target list.
|
PickList |
remove(ChoicePicker picker)
Removes the value from target list back to the source list.
|
PickList |
remove(int index)
Removes the value from target list back to the source list.
|
PickList |
remove(String match)
Removes the value from target list back to the source list.
|
PickList |
removeAll()
Removes all values from target list back to the source list.
|
PickList |
removeMultiple(MultipleChoicePicker picker)
Picks and removes multiple values from target list back to source list.
|
PickList add(ChoicePicker picker)
picker
- object which defines rules to pick the valuePickList add(String match)
match
- the textual representation of the value which should be picked and added to target listPickList add(int index)
index
- index of the value which should be picked and added to target listPickList addMultiple(MultipleChoicePicker picker)
picker
- defines rules to pick the multiple values and add them to the target listPickList addAll()
PickList remove(ChoicePicker picker)
picker
- object which defines rules to pick the valuePickList remove(String match)
match
- the textual representation of the
value which should be picked and removed from target list back to the source listPickList remove(int index)
index
- index of the value which should be picked and removed from target list back to the source listPickList removeMultiple(MultipleChoicePicker picker)
picker
- defines rules to pick the multiple values and remove them from target list back to the source listPickList removeAll()
Copyright © 2015 JBoss by Red Hat. All Rights Reserved.