javax.accessibility
public interface AccessibleExtendedTable extends AccessibleTable
The AccessibleContext.getAccessibleTable()
method
should return an instance of this interface only when it is supported.
Since: 1.2
See Also: Accessible AccessibleContext getAccessibleTable
UNKNOWN: updated to 1.4
Method Summary | |
---|---|
int | getAccessibleColumn(int index)
Returns the column number of an index in the table.
|
int | getAccessibleIndex(int r, int c)
Returns the cell number for a row-major address from (0,0).
|
int | getAccessibleRow(int index)
Returns the row number of an index in the table.
|
Parameters: index the cell index, in row-major form from (0,0)
Returns: the column number, or -1 if out of bounds
Parameters: r the row c the column
Returns: the cell index
Parameters: index the cell index, in row-major form from (0,0)
Returns: the row number, or -1 if out of bounds