Where Am I? Class Hierarchy (JFC) All Classes (JFC)

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

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

Methods

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

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

Returns:
the zero-based number of columns in the table
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
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
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
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)
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
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

Where Am I? Class Hierarchy (JFC) All Classes (JFC)