| |
|
| java.lang.Object com.flexive.shared.value.SelectMany
SelectMany | public class SelectMany implements Serializable(Code) | | Container for manipulating FxSelectList items used in FxSelectMany values
author: Markus Plesser (markus.plesser@flexive.com), UCS - unique computing solutions gmbh (http://www.ucs.at) |
SelectMany | public SelectMany(FxSelectList list)(Code) | | Constructor
Parameters: list - the handled list |
deselect | public SelectMany deselect(long id)(Code) | | Deselect an item by its id, will throw an exception if item id does not belong to the managed list
Parameters: id - item id to deselect this |
deselectAll | public void deselectAll()(Code) | | Deselects all items
|
getAvailable | public List<FxSelectListItem> getAvailable()(Code) | | Get all items available for selection (unmodifiable!)
all items available for selection (unmodifiable!) |
getSelectList | public FxSelectList getSelectList()(Code) | | Get this SelectMany's SelectList
FxSelectList |
getSelected | public List<FxSelectListItem> getSelected()(Code) | | Get all items selected (unmodifiable!)
all items selected (unmodifiable!) |
getSelectedIds | public List<Long> getSelectedIds()(Code) | | Return the selected item ids.
the selected item ids. |
getSelectedIdsList | public String getSelectedIdsList()(Code) | | Get an ordered comma separated list of selected id's
ordered comma separated list of selected id's |
getSelectedLabels | public List<String> getSelectedLabels()(Code) | | Return the selected item labels.
the selected item labels. |
hashCode | public int hashCode()(Code) | | |
select | public SelectMany select(long id)(Code) | | Select an item by its id, will throw an exception if item id does not belong to the managed list
Parameters: id - item id to select this |
selectFromList | public SelectMany selectFromList(String list)(Code) | | Select all items that are in the given comma separated list
Parameters: list - items to select this |
|
|
|