Skip to content
mlabuda edited this page Feb 18, 2014 · 3 revisions

API / Abstract

  • List / AbstractList

Implementation(s)

  • DefaultList

Usage

DefaultList

Look up a list with index 0

List list = new DefaultList(0);

Get all items of the list

String[] items = list.getListItems();

Select items with index 0 and 1

list.select(0, 1);

Select item with text Item 2

list.select("Item 2");

Clear selection of items

list.deselectAll();
Clone this wiki locally