javax.accessibility
Interface AccessibleExtendedTable
java.lang.Object
|
+--javax.accessibility.AccessibleTable
|
+--javax.accessibility.AccessibleExtendedTable
All Implemented Interfaces:
AccessibleTable
Objects which present 2-D tables with the extension of a flat address
space should implement this interface. Accessibility software can use the
implementations of this interface to better manipulate the table.
The AccessibleContext.getAccessibleTable()
method
should return an instance of this interface only when it is supported.
Since:Author:- Eric Blake <ebb9@email.byu.edu>
See Also:
getAccessibleColumn
public int getAccessibleColumn(int index)
Returns the column number of an index in the table.
Parameters:
Returns:
- the column number, or -1 if out of bounds
getAccessibleIndex
public int getAccessibleIndex(int r, int c)
Returns the cell number for a row-major address from (0,0).
Parameters:
Returns:
getAccessibleRow
public int getAccessibleRow(int index)
Returns the row number of an index in the table.
Parameters:
Returns:
- the row number, or -1 if out of bounds
The
AccessibleContext.getAccessibleTable()
method should return an instance of this interface only when it is supported.