public interface AccessibleTable
Class AccessibleTable describes a user-interface component that presents data in a two-dimensional table format.
Accessible getAccessibleCaption()
Returns the caption for the table.
void setAccessibleCaption(Accessible a)
Sets the caption for the table.
a
- the caption for the tableAccessible getAccessibleSummary()
Returns the summary description of the table.
void setAccessibleSummary(Accessible a)
Sets the summary description of the table
a
- the summary description of the tableint getAccessibleRowCount()
Returns the number of rows in the table.
int getAccessibleColumnCount()
Returns the number of columns in the table.
Accessible getAccessibleAt(int r, int c)
Returns the Accessible at a specified row and column in the table.
r
- zero-based row of the tablec
- zero-based column of the tableint getAccessibleRowExtentAt(int r, int c)
Returns the number of rows occupied by the Accessible at a specified row and column in the table.
r
- zero-based row of the tablec
- zero-based column of the tableint getAccessibleColumnExtentAt(int r, int c)
Returns the number of columns occupied by the Accessible at a specified row and column in the table.
r
- zero-based row of the tablec
- zero-based column of the tableAccessibleTable getAccessibleRowHeader()
Returns the row headers as an AccessibleTable.
void setAccessibleRowHeader(AccessibleTable table)
Sets the row headers.
table
- an AccessibleTable representing the row headersAccessibleTable getAccessibleColumnHeader()
Returns the column headers as an AccessibleTable.
void setAccessibleColumnHeader(AccessibleTable table)
Sets the column headers.
table
- an AccessibleTable representing the column headersAccessible getAccessibleRowDescription(int r)
Returns the description of the specified row in the table.
r
- zero-based row of the tablevoid setAccessibleRowDescription(int r, Accessible a)
Sets the description text of the specified row of the table.
r
- zero-based row of the tablea
- the description of the rowAccessible getAccessibleColumnDescription(int c)
Returns the description text of the specified column in the table.
c
- zero-based column of the tablevoid setAccessibleColumnDescription(int c, Accessible a)
Sets the description text of the specified column in the table.
c
- zero-based column of the tablea
- the text description of the columnboolean isAccessibleSelected(int r, int c)
Returns a boolean value indicating whether the accessible at a specified row and column is selected.
r
- zero-based row of the tablec
- zero-based column of the tableboolean isAccessibleRowSelected(int r)
Returns a boolean value indicating whether the specified row is selected.
r
- zero-based row of the tableboolean isAccessibleColumnSelected(int c)
Returns a boolean value indicating whether the specified column is selected.
c
- zero-based column of the tableint[] getSelectedAccessibleRows()
Returns the selected rows in a table.
int[] getSelectedAccessibleColumns()
Returns the selected columns in a table.
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.