API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.accessibility. AccessibleTable View Source
Author(s)
Lynn Monsanto
Since
1.3
Version
1.2 10/12/99
Serial
Hierarchy
 AccessibleTable
Subinterfaces
Description
public interface AccessibleTable
  Class AccessibleTable describes a user-interface component that presents data in a two-dimensional table format.
See also:   
Methods
Hide/Show inherited methods
public Accessible getAccessibleAt (int r, int c)
  Returns the Accessible at a specified row and column in the table.
public Accessible getAccessibleCaption ()
  Returns the caption for the table.
public int getAccessibleColumnCount ()
  Returns the number of columns in the table.
public 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 AccessibleTable getAccessibleColumnHeader ()
  Returns the column headers as an AccessibleTable.
public int getAccessibleRowCount ()
  Returns the number of rows in the table.
public 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 AccessibleTable getAccessibleRowHeader ()
  Returns the row headers as an AccessibleTable.
public 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 (Accessible a)
  Sets the caption for the table.
public void setAccessibleColumnDescription (int c, Accessible a)
  Sets the description text of the specified column in the table.
public void setAccessibleColumnHeader (AccessibleTable table)
  Sets the column headers.
public void setAccessibleRowDescription (int r, Accessible a)
  Sets the description text of the specified row of the table.
public void setAccessibleRowHeader (AccessibleTable table)
  Sets the row headers.
public void setAccessibleSummary (Accessible a)
  Sets the summary description of the table
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar