All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.sun.java.accessibility.AccessibleTable

public interface AccessibleTable
The AccessibleTable interface is currently up for review and should only be used for experimental purposes. Interested parties should review this interface and send comments to access@sun.com. Based upon feedback from reviewers, we may add a method to AccessibleContext (e.g., getAccessibleTable) that will return an object that implements this interface if the Accessible object is a table.

See Also:
Accessible, AccessibleContext

Method Index

 o getAccessibleAt(int, int)
Returns the Accessible at a given (row, column) in the table
 o getAccessibleColumnAtIndex(int)
Returns the column at a given index into the table
 o getAccessibleColumnCount()
Returns the number of columns in the table
 o getAccessibleColumnHeader(int)
Return the header text of the specified column in the table
 o getAccessibleIndexAt(int, int)
Returns the index at a given (row, column) in the table
 o getAccessibleRowAtIndex(int)
Returns the row at a given index into the table
 o getAccessibleRowCount()
Returns the number of rows in the table
 o getAccessibleRowHeader(int)
Return the header text of the specified row in the tabe

Methods

 o getAccessibleRowCount
 public abstract int getAccessibleRowCount()
Returns the number of rows in the table

Returns:
the number of rows in the table
 o getAccessibleColumnCount
 public abstract int getAccessibleColumnCount()
Returns the number of columns in the table

Returns:
the zero-based number of columns in the table
 o getAccessibleRowAtIndex
 public abstract int getAccessibleRowAtIndex(int i)
Returns the row at a given index into the table

Parameters:
i - zero-based index into the table
Returns:
the zero-based row at a given index
 o getAccessibleColumnAtIndex
 public abstract int getAccessibleColumnAtIndex(int i)
Returns the column at a given index into the table

Parameters:
i - zero-based index into the table
Returns:
the column at a given index
 o getAccessibleIndexAt
 public abstract int getAccessibleIndexAt(int r,
                                          int c)
Returns the index at a given (row, column) in the table

Parameters:
r - zero-based row of the table
c - zero-based column of the table
Returns:
the index into the table
 o getAccessibleAt
 public abstract Accessible getAccessibleAt(int r,
                                            int c)
Returns the Accessible at a given (row, column) in the table

Parameters:
r - zero-based row of the table
c - zero-based column of the table
Returns:
the Accessible at the specified (row, column)
 o getAccessibleRowHeader
 public abstract Accessible getAccessibleRowHeader(int r)
Return the header text of the specified row in the tabe

Parameters:
r - zero-based row of the table
Returns:
the text header of the row
 o getAccessibleColumnHeader
 public abstract Accessible getAccessibleColumnHeader(int c)
Return the header text of the specified column in the table

Parameters:
c - zero-based column of the table
Returns:
the text header of the column

All Packages  Class Hierarchy  This Package  Previous  Next  Index