This repository was archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
Table
mlabuda edited this page Feb 18, 2014
·
5 revisions
- Table / AbstractTable
- DefaultTable

Look up a table
Table table = new DefaultTable();Select table item in first row
table.select(0);Select table items in rows 1 and 3
table.select(0,2);Check if table contains item with text Item1
boolean containsItem1 = table.containsItem("Item1");Get table item from second row
TableItem item1 = table.getItem(1);Get all table items
List<TableItem> allItems = table.getItems();Select all table items
table.selectAll();