Field |
Screen.getField(String fieldName) |
Returns the user-defined field with the given name.
|
Field |
Session.getField(String fieldName) |
Returns the user-defined field with the given name from the current screen.
|
List<Table.Row> |
Table.getRows(boolean includeBlankRows) |
Retrieve all the rows of the table.
|
Table |
Screen.getTable(String tableName) |
Returns the user-defined table with the given name.
|
Table |
Session.getTable(String tableName) |
Returns the user-defined table with the given name from the current screen.
|
String |
Field.getText(int index) |
For multi-part fields, e.g.
|
String |
Session.getText(String fieldName) |
Returns the text content of the given field.
|
void |
Session.sendKey(String fieldName,
int index,
String key) |
Position the cursor to the given user-defined field, then send a key to the host.
|
void |
Session.sendKey(String fieldName,
String key) |
Position the cursor to the given user-defined field, then send a key to the host.
|
void |
Session.setText(String fieldName,
String fieldValue) |
Set the text content of the given named field.
|
void |
Table.visitRows(Table.RowVisitor visitor,
boolean includeBlankRows,
boolean forUpdate,
Runnable eachPage) |
Call the RowVisitor for each row in the table.
|
void |
Table.visitRows(Table.RowVisitor visitor,
boolean includeBlankRows,
Runnable eachPage) |
Call the RowVisitor for each row in the table.
|