T - type of items that will be listed.public final class ListSingleSelection<T> extends Object
T : only 1 item can be selected.| Modifier and Type | Field and Description |
|---|---|
protected List<T> |
values
Declares a List of items of type
T. |
| Constructor and Description |
|---|
ListSingleSelection(List<T> values)
Creates a new ListSingleSelection object.
|
ListSingleSelection(T... values)
Creates a new ListSingleSelection object.
|
| Modifier and Type | Method and Description |
|---|---|
List<T> |
getPossibleValues()
To get all the items of the
List. |
T |
getSelectedValue()
Get the item that is currently selected.
|
void |
setSelectedValue(T val)
Set the
val item of type T as selected in the ListSingleSelection. |
protected final List<T> values
T.public ListSingleSelection(T... values)
example :
ListSingleSelection lss = new ListSingleSelection("1","2","3","4")
values - An arbitrary number of values of type T that can be selected.public ListSingleSelection(List<T> values)
example :
List list = ArrayList();
list.add("1");
list.add("2");
list.add("3");
list.add("4");
ListSingleSelection lss = new ListSingleSelection(list);
values - The list of values of type T that can be selected. This list
may be empty, but not null.public T getSelectedValue()
public void setSelectedValue(T val)
val item of type T as selected in the ListSingleSelection.val - the selected item.public List<T> getPossibleValues()
List values .Copyright 2011 Cytoscape Consortium. All rights reserved.