Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
javax.accessibility.Accessible

Uses of Accessible in javax.accessibility
 

Fields in javax.accessibility declared as Accessible
protected  Accessible AccessibleContext.accessibleParent
          The accessible parent of this object.
 

Methods in javax.accessibility that return Accessible
 Accessible AccessibleContext.getAccessibleParent()
          Return the accessible parent of this object.
abstract  Accessible AccessibleContext.getAccessibleChild(int i)
          Returns the specified accessible chile.
 Accessible AccessibleComponent.getAccessibleAt(java.awt.Point point)
          If an object exists at the specified point which is a child of this parent component, and it is accessible, then it is returned.
 Accessible AccessibleSelection.getAccessibleSelection(int i)
          Returns the i-th selected child (not necessarily the overall i-th child) of this Accessible object.
 Accessible AccessibleTable.getAccessibleCaption()
          Return the caption for the table, or null if unknown.
 Accessible AccessibleTable.getAccessibleSummary()
          Return the summary description of the table, or null if unknown.
 Accessible AccessibleTable.getAccessibleAt(int r, int c)
          Return the cell at the specified row and column, or null if out of bounds.
 Accessible AccessibleTable.getAccessibleRowDescription(int r)
          Return the description of a row, or null if there is none or the index is out of bounds.
 Accessible AccessibleTable.getAccessibleColumnDescription(int c)
          Return the description of a column, or null if there is none or the index is out of bounds.
 

Methods in javax.accessibility with parameters of type Accessible
 void AccessibleContext.setAccessibleParent(Accessible a)
          Sets the accessible parent of this object.
 void AccessibleTable.setAccessibleCaption(Accessible caption)
          Set the table caption.
 void AccessibleTable.setAccessibleSummary(Accessible summary)
          Set the table summary description.
 void AccessibleTable.setAccessibleRowDescription(int r, Accessible description)
          Set the description of a row.
 void AccessibleTable.setAccessibleColumnDescription(int c, Accessible description)
          Set the description of a column.