API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.accessibility. AccessibleContext View Source
Author(s)
Peter Korn
Hans Muller
Willie Walker
Lynn Monsanto
Since
Version
1.45 04/07/06
Serial
Hierarchy
 Object
      AccessibleContext
Implements
Subclasses
Description
publicabstract abstract class AccessibleContext
  AccessibleContext represents the minimum information all accessible objects return.
See also:   
Constructors
public AccessibleContext ()
Methods
Hide/Show inherited methods
public void addPropertyChangeListener (PropertyChangeListener listener)
  Adds a PropertyChangeListener to the listener list.
public void firePropertyChange (String propertyName, Object oldValue, Object newValue)
  Support for reporting bound property changes.
public AccessibleAction getAccessibleAction ()
  Gets the AccessibleAction associated with this object that supports one or more actions.
publicabstract Accessible getAccessibleChild (int i)
  Returns the specified Accessible child of the object.
publicabstract int getAccessibleChildrenCount ()
  Returns the number of accessible children of the object.
public AccessibleComponent getAccessibleComponent ()
  Gets the AccessibleComponent associated with this object that has a graphical representation.
public String getAccessibleDescription ()
  Gets the accessibleDescription property of this object.
public AccessibleEditableText getAccessibleEditableText ()
  Gets the AccessibleEditableText associated with this object presenting editable text on the display.
public AccessibleIcon getAccessibleIcon ()
  Gets the AccessibleIcons associated with an object that has one or more associated icons
publicabstract int getAccessibleIndexInParent ()
  Gets the 0-based index of this object in its accessible parent.
public String getAccessibleName ()
  Gets the accessibleName property of this object.
public Accessible getAccessibleParent ()
  Gets the Accessible parent of this object.
public AccessibleRelationSet getAccessibleRelationSet ()
  Gets the AccessibleRelationSet associated with an object
publicabstract AccessibleRole getAccessibleRole ()
  Gets the role of this object.
public AccessibleSelection getAccessibleSelection ()
  Gets the AccessibleSelection associated with this object which allows its Accessible children to be selected.
publicabstract AccessibleStateSet getAccessibleStateSet ()
  Gets the state set of this object.
public AccessibleTable getAccessibleTable ()
  Gets the AccessibleTable associated with an object
public AccessibleText getAccessibleText ()
  Gets the AccessibleText associated with this object presenting text on the display.
public AccessibleValue getAccessibleValue ()
  Gets the AccessibleValue associated with this object that supports a Numerical value.
publicabstract Locale getLocale () throws IllegalComponentStateException
  Gets the locale of the component.
public void removePropertyChangeListener (PropertyChangeListener listener)
  Removes a PropertyChangeListener from the listener list.
public void setAccessibleDescription (String s)
  Sets the accessible description of this object.
public void setAccessibleName (String s)
  Sets the localized accessible name of this object.
public void setAccessibleParent (Accessible a)
  Sets the Accessible parent of this object.
Fields
Hide/Show inherited fields
publicfinalstatic String ACCESSIBLE_ACTION_PROPERTY = "accessibleActionProperty"
  Constant used to indicate that the supported set of actions has changed.
publicfinalstatic String ACCESSIBLE_ACTIVE_DESCENDANT_PROPERTY = "AccessibleActiveDescendant"
  Constant used to determine when the active descendant of a component has changed.
publicfinalstatic String ACCESSIBLE_CARET_PROPERTY = "AccessibleCaret"
  Constant used to determine when the accessibleText caret has changed.
publicfinalstatic String ACCESSIBLE_CHILD_PROPERTY = "AccessibleChild"
  Constant used to determine when Accessible children are added/removed from the object.
publicfinalstatic String ACCESSIBLE_COMPONENT_BOUNDS_CHANGED = "accessibleComponentBoundsChanged"
  PropertyChangeEvent which indicates that a change has occurred in a component's bounds.
publicfinalstatic String ACCESSIBLE_DESCRIPTION_PROPERTY = "AccessibleDescription"
  Constant used to determine when the accessibleDescription property has changed.
publicfinalstatic String ACCESSIBLE_HYPERTEXT_OFFSET = "AccessibleHypertextOffset"
  Constant used to indicate that a hypertext element has received focus.
publicfinalstatic String ACCESSIBLE_INVALIDATE_CHILDREN = "accessibleInvalidateChildren"
  PropertyChangeEvent which indicates that a significant change has occurred to the children of a component like a tree or text.
publicfinalstatic String ACCESSIBLE_NAME_PROPERTY = "AccessibleName"
  Constant used to determine when the accessibleName property has changed.
publicfinalstatic String ACCESSIBLE_SELECTION_PROPERTY = "AccessibleSelection"
  Constant used to determine when the accessibleSelection has changed.
publicfinalstatic String ACCESSIBLE_STATE_PROPERTY = "AccessibleState"
  Constant used to determine when the accessibleStateSet property has changed.
publicfinalstatic String ACCESSIBLE_TABLE_CAPTION_CHANGED = "accessibleTableCaptionChanged"
  Constant used to indicate that the table caption has changed The old value in the PropertyChangeEvent will be an Accessible representing the previous table caption and the new value will be an Accessible representing the new table caption.
publicfinalstatic String ACCESSIBLE_TABLE_COLUMN_DESCRIPTION_CHANGED = "accessibleTableColumnDescriptionChanged"
  Constant used to indicate that the column description has changed The old value in the PropertyChangeEvent will be null and the new value will be an Integer representing the column index.
publicfinalstatic String ACCESSIBLE_TABLE_COLUMN_HEADER_CHANGED = "accessibleTableColumnHeaderChanged"
  Constant used to indicate that the column header has changed The old value in the PropertyChangeEvent will be null and the new value will be an AccessibleTableModelChange representing the header change.
publicfinalstatic String ACCESSIBLE_TABLE_MODEL_CHANGED = "accessibleTableModelChanged"
  Constant used to indicate that table data has changed.
publicfinalstatic String ACCESSIBLE_TABLE_ROW_DESCRIPTION_CHANGED = "accessibleTableRowDescriptionChanged"
  Constant used to indicate that the row description has changed The old value in the PropertyChangeEvent will be null and the new value will be an Integer representing the row index.
publicfinalstatic String ACCESSIBLE_TABLE_ROW_HEADER_CHANGED = "accessibleTableRowHeaderChanged"
  Constant used to indicate that the row header has changed The old value in the PropertyChangeEvent will be null and the new value will be an AccessibleTableModelChange representing the header change.
publicfinalstatic String ACCESSIBLE_TABLE_SUMMARY_CHANGED = "accessibleTableSummaryChanged"
  Constant used to indicate that the table summary has changed The old value in the PropertyChangeEvent will be an Accessible representing the previous table summary and the new value will be an Accessible representing the new table summary.
publicfinalstatic String ACCESSIBLE_TEXT_ATTRIBUTES_CHANGED = "accessibleTextAttributesChanged"
  PropertyChangeEvent which indicates that text attributes have changed.
publicfinalstatic String ACCESSIBLE_TEXT_PROPERTY = "AccessibleText"
  PropertyChangeEvent which indicates that text has changed.
publicfinalstatic String ACCESSIBLE_VALUE_PROPERTY = "AccessibleValue"
  Constant used to determine when the accessibleValue property has changed.
publicfinalstatic String ACCESSIBLE_VISIBLE_DATA_PROPERTY = "AccessibleVisibleData"
  Constant used to determine when the visual appearance of the object has changed.
protected String accessibleDescription
  A localized String containing the description of the object.
protected String accessibleName
  A localized String containing the name of the object.
protected Accessible accessibleParent
  The accessible parent of this object.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar