forked from eclipse-archived/reddeer
-
Notifications
You must be signed in to change notification settings - Fork 1
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();JBoss Red Deer - Quick Links
- Home
- [Release notes] (/jboss-reddeer/reddeer/wiki/Release-notes)
- Articles
- JavaDoc
- User guide
- Contributor Guide
- FAQ