AccessibleExtendedTable
JTable.AccessibleJTable
public interface AccessibleTable
AccessibleTable
describes a user-interface component that presents data in a two-dimensional table format.Modifier and Type | Method | Description |
---|---|---|
Accessible |
getAccessibleAt |
Returns the Accessible at a specified row and column in the table. |
Accessible |
getAccessibleCaption() |
Returns the caption for the table. |
int |
getAccessibleColumnCount() |
Returns the number of columns in the table. |
Accessible |
getAccessibleColumnDescription |
Returns the description text of the specified column in the table. |
int |
getAccessibleColumnExtentAt |
Returns the number of columns occupied by the Accessible at a specified row and column in the table. |
AccessibleTable |
getAccessibleColumnHeader() |
Returns the column headers as an AccessibleTable . |
int |
getAccessibleRowCount() |
Returns the number of rows in the table. |
Accessible |
getAccessibleRowDescription |
Returns the description of the specified row in the table. |
int |
getAccessibleRowExtentAt |
Returns the number of rows occupied by the Accessible at a specified row and column in the table. |
AccessibleTable |
getAccessibleRowHeader() |
Returns the row headers as an AccessibleTable . |
Accessible |
getAccessibleSummary() |
Returns the summary description of the table. |
int[] |
getSelectedAccessibleColumns() |
Returns the selected columns in a table. |
int[] |
getSelectedAccessibleRows() |
Returns the selected rows in a table. |
boolean |
isAccessibleColumnSelected |
Returns a boolean value indicating whether the specified column is selected. |
boolean |
isAccessibleRowSelected |
Returns a boolean value indicating whether the specified row is selected. |
boolean |
isAccessibleSelected |
Returns a boolean value indicating whether the accessible at a specified row and column is selected. |
void |
setAccessibleCaption |
Sets the caption for the table. |
void |
setAccessibleColumnDescription |
Sets the description text of the specified column in the table. |
void |
setAccessibleColumnHeader |
Sets the column headers. |
void |
setAccessibleRowDescription |
Sets the description text of the specified row of the table. |
void |
setAccessibleRowHeader |
Sets the row headers. |
void |
setAccessibleSummary |
Sets the summary description of the table. |
Accessible getAccessibleCaption()
void setAccessibleCaption(Accessible a)
a
- the caption for the tableAccessible getAccessibleSummary()
void setAccessibleSummary(Accessible a)
a
- the summary description of the tableint getAccessibleRowCount()
int getAccessibleColumnCount()
Accessible getAccessibleAt(int r, int c)
Accessible
at a specified row and column in the table.r
- zero-based row of the tablec
- zero-based column of the tableAccessible
at the specified row and columnint getAccessibleRowExtentAt(int r, int c)
Accessible
at a specified row and column in the table.r
- zero-based row of the tablec
- zero-based column of the tableAccessible
at a given specified (row, column)int getAccessibleColumnExtentAt(int r, int c)
Accessible
at a specified row and column in the table.r
- zero-based row of the tablec
- zero-based column of the tableAccessible
at a given specified row and columnAccessibleTable getAccessibleRowHeader()
AccessibleTable
.AccessibleTable
representing the row headersvoid setAccessibleRowHeader(AccessibleTable table)
table
- an AccessibleTable
representing the row headersAccessibleTable getAccessibleColumnHeader()
AccessibleTable
.AccessibleTable
representing the column headersvoid setAccessibleColumnHeader(AccessibleTable table)
table
- an AccessibleTable
representing the column headersAccessible getAccessibleRowDescription(int r)
r
- zero-based row of the tablevoid setAccessibleRowDescription(int r, Accessible a)
r
- zero-based row of the tablea
- the description of the rowAccessible getAccessibleColumnDescription(int c)
c
- zero-based column of the tablevoid setAccessibleColumnDescription(int c, Accessible a)
c
- zero-based column of the tablea
- the text description of the columnboolean isAccessibleSelected(int r, int c)
r
- zero-based row of the tablec
- zero-based column of the tabletrue
if the accessible at the row and column is selected. Otherwise, the boolean value false
boolean isAccessibleRowSelected(int r)
r
- zero-based row of the tabletrue
if the specified row is selected. Otherwise, false
.boolean isAccessibleColumnSelected(int c)
c
- zero-based column of the tabletrue
if the specified column is selected. Otherwise, false
.int[] getSelectedAccessibleRows()
int[] getSelectedAccessibleColumns()
© 1993, 2023, 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.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/accessibility/AccessibleTable.html