Methods Summary |
---|
public javax.accessibility.Accessible | getAccessibleAt(int r, int c)Returns the Accessible at a specified row and column
in the table.
|
public javax.accessibility.Accessible | getAccessibleCaption()Returns the caption for the table.
|
public int | getAccessibleColumnCount()Returns the number of columns in the table.
|
public javax.accessibility.Accessible | getAccessibleColumnDescription(int c)Returns the description text of the specified column in the table.
|
public int | getAccessibleColumnExtentAt(int r, int c)Returns the number of columns occupied by the Accessible at
a specified row and column in the table.
|
public javax.accessibility.AccessibleTable | getAccessibleColumnHeader()Returns the column headers as an AccessibleTable.
|
public int | getAccessibleRowCount()Returns the number of rows in the table.
|
public javax.accessibility.Accessible | getAccessibleRowDescription(int r)Returns the description of the specified row in the table.
|
public int | getAccessibleRowExtentAt(int r, int c)Returns the number of rows occupied by the Accessible at
a specified row and column in the table.
|
public javax.accessibility.AccessibleTable | getAccessibleRowHeader()Returns the row headers as an AccessibleTable.
|
public javax.accessibility.Accessible | getAccessibleSummary()Returns the summary description of the table.
|
public int[] | getSelectedAccessibleColumns()Returns the selected columns in a table.
|
public int[] | getSelectedAccessibleRows()Returns the selected rows in a table.
|
public boolean | isAccessibleColumnSelected(int c)Returns a boolean value indicating whether the specified column
is selected.
|
public boolean | isAccessibleRowSelected(int r)Returns a boolean value indicating whether the specified row
is selected.
|
public boolean | isAccessibleSelected(int r, int c)Returns a boolean value indicating whether the accessible at
a specified row and column is selected.
|
public void | setAccessibleCaption(javax.accessibility.Accessible a)Sets the caption for the table.
|
public void | setAccessibleColumnDescription(int c, javax.accessibility.Accessible a)Sets the description text of the specified column in the table.
|
public void | setAccessibleColumnHeader(javax.accessibility.AccessibleTable table)Sets the column headers.
|
public void | setAccessibleRowDescription(int r, javax.accessibility.Accessible a)Sets the description text of the specified row of the table.
|
public void | setAccessibleRowHeader(javax.accessibility.AccessibleTable table)Sets the row headers.
|
public void | setAccessibleSummary(javax.accessibility.Accessible a)Sets the summary description of the table
|