is new.
java.lang.Objectjavax.accessibility.AccessibleContext
AccessibleContext represents the minimum information all accessible objects return. This information includes the accessible name, description, role, and state of the object, as well as information about its parent and children. AccessibleContext also contains methods for obtaining more specific accessibility information about a component. If the component supports them, these methods will return an object that implements one or more of the following interfaces:
| Field Summary | |
|---|---|
| static String |
ACCESSIBLE_ACTION_PROPERTY
Constant used to indicate that the supported set of actions has changed. |
| static String |
ACCESSIBLE_ACTIVE_DESCENDANT_PROPERTY
Constant used to determine when the active descendant of a component has changed. |
| static String |
ACCESSIBLE_CARET_PROPERTY
Constant used to determine when the accessibleText caret has changed. |
| static String |
ACCESSIBLE_CHILD_PROPERTY
Constant used to determine when Accessible children are added/removed from the object. |
static
String
|
ACCESSIBLE_COMPONENT_BOUNDS_CHANGED
PropertyChangeEvent which indicates that a change has occurred in a component's bounds.
|
| static String |
ACCESSIBLE_DESCRIPTION_PROPERTY
Constant used to determine when the accessibleDescription property has changed. |
| static String |
ACCESSIBLE_HYPERTEXT_OFFSET
Constant used to indicate that a hypertext element has received focus. |
static
String
|
ACCESSIBLE_INVALIDATE_CHILDREN
PropertyChangeEvent which indicates that a significant change has occurred to the children of a component like a tree or text.
|
| static String |
ACCESSIBLE_NAME_PROPERTY
Constant used to determine when the accessibleName property has changed. |
| static String |
ACCESSIBLE_SELECTION_PROPERTY
Constant used to determine when the accessibleSelection has changed. |
| static String |
ACCESSIBLE_STATE_PROPERTY
Constant used to determine when the accessibleStateSet property has changed. |
| static String |
ACCESSIBLE_TABLE_CAPTION_CHANGED
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. |
| static String |
ACCESSIBLE_TABLE_COLUMN_DESCRIPTION_CHANGED
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. |
| static String |
ACCESSIBLE_TABLE_COLUMN_HEADER_CHANGED
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. |
| static String |
ACCESSIBLE_TABLE_MODEL_CHANGED
Constant used to indicate that table data has changed. |
| static String |
ACCESSIBLE_TABLE_ROW_DESCRIPTION_CHANGED
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. |
| static String |
ACCESSIBLE_TABLE_ROW_HEADER_CHANGED
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. |
| static String |
ACCESSIBLE_TABLE_SUMMARY_CHANGED
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. |
| static String |
ACCESSIBLE_TEXT_ATTRIBUTES_CHANGED
PropertyChangeEvent which indicates that text attributes have
|
static
String
|
ACCESSIBLE_TEXT_PROPERTY
PropertyChangeEvent which indicates that text has changed.
|
| static String |
ACCESSIBLE_VALUE_PROPERTY
Constant used to determine when the accessibleValue property has changed. |
| static String |
ACCESSIBLE_VISIBLE_DATA_PROPERTY
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. |
| Constructor Summary | |
|---|---|
|
AccessibleContext
() |
|
| Method Summary | |
|---|---|
| void |
addPropertyChangeListener
(
PropertyChangeListener
listener) Adds a PropertyChangeListener to the listener list. |
| void |
firePropertyChange
(
String
propertyName,
Object
oldValue,
Object
newValue) Support for reporting bound property changes. |
| AccessibleAction |
getAccessibleAction
() Gets the AccessibleAction associated with this object that supports one or more actions. |
| abstract Accessible |
getAccessibleChild
(int i) Returns the specified Accessible child of the object. |
| abstract int |
getAccessibleChildrenCount
() Returns the number of accessible children of the object. |
| AccessibleComponent |
getAccessibleComponent
() Gets the AccessibleComponent associated with this object that has a graphical representation. |
| String |
getAccessibleDescription
() Gets the accessibleDescription property of this object. |
| AccessibleEditableText |
getAccessibleEditableText
() Gets the AccessibleEditableText associated with this object presenting editable text on the display. |
| AccessibleIcon [] |
getAccessibleIcon
() Gets the AccessibleIcons associated with an object that has one or more associated icons |
| abstract int |
getAccessibleIndexInParent
() Gets the 0-based index of this object in its accessible parent. |
| String |
getAccessibleName
() Gets the accessibleName property of this object. |
| Accessible |
getAccessibleParent
() Gets the Accessible parent of this object. |
| AccessibleRelationSet |
getAccessibleRelationSet
() Gets the AccessibleRelationSet associated with an object |
| abstract AccessibleRole |
getAccessibleRole
() Gets the role of this object. |
| AccessibleSelection |
getAccessibleSelection
() Gets the AccessibleSelection associated with this object which allows its Accessible children to be selected. |
| abstract AccessibleStateSet |
getAccessibleStateSet
() Gets the state set of this object. |
| AccessibleTable |
getAccessibleTable
() Gets the AccessibleTable associated with an object |
| AccessibleText |
getAccessibleText
() Gets the AccessibleText associated with this object presenting text on the display. |
| AccessibleValue |
getAccessibleValue
() Gets the AccessibleValue associated with this object that supports a Numerical value. |
| abstract Locale |
getLocale
() Gets the locale of the component. |
| void |
removePropertyChangeListener
(
PropertyChangeListener
listener) Removes a PropertyChangeListener from the listener list. |
| void |
setAccessibleDescription
(
String
s) Sets the accessible description of this object. |
| void |
setAccessibleName
(
String
s) Sets the localized accessible name of this object. |
| void |
setAccessibleParent
(
Accessible
a) Sets the Accessible parent of this object. |
| Methods inherited from class java.lang. Object |
|---|
| clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait |
| Field Detail |
|---|
public static final String ACCESSIBLE_NAME_PROPERTY
public static final String ACCESSIBLE_DESCRIPTION_PROPERTY
public static final String ACCESSIBLE_STATE_PROPERTY
public static final String ACCESSIBLE_VALUE_PROPERTY
public static final String ACCESSIBLE_SELECTION_PROPERTY
ACCESSIBLE_CARET_PROPERTY
public static final StringACCESSIBLE_CARET_PROPERTY
ACCESSIBLE_TEXT_PROPERTY
Constant used to determine when the accessibleText caret has changed. The old value in the PropertyChangeEvent will be an integer representing the old caret position, and the new value will be an integer representing the new/current caret position.
addPropertyChangeListener(java.beans.PropertyChangeListener)
Constant Field Values
ACCESSIBLE_VISIBLE_DATA_PROPERTY
public static final StringACCESSIBLE_VISIBLE_DATA_PROPERTY
ACCESSIBLE_CARET_PROPERTY
Constant used to determine when the visual appearance of the object has changed. The old and new values in the PropertyChangeEvent are currently reserved for future use.
Constant Field Values
ACCESSIBLE_CHILD_PROPERTY
public static final StringACCESSIBLE_CHILD_PROPERTY
ACCESSIBLE_VISIBLE_DATA_PROPERTY
Constant used to determine when Accessible children are added/removed from the object. If an Accessible child is being added, the old value will be null and the new value will be the Accessible child. If an Accessible child is being removed, the old value will be the Accessible child, and the new value will be null.
Constant Field Values
ACCESSIBLE_ACTIVE_DESCENDANT_PROPERTY
public static final StringACCESSIBLE_ACTIVE_DESCENDANT_PROPERTY
ACCESSIBLE_CHILD_PROPERTY
Constant used to determine when the active descendant of a component has changed. The active descendant is used for objects such as list, tree, and table, which may have transient children. When the active descendant has changed, the old value of the property change event will be the Accessible representing the previous active child, and the new value will be the Accessible representing the current active child.
Constant Field Values
ACCESSIBLE_TABLE_CAPTION_CHANGED
public static final StringACCESSIBLE_TABLE_CAPTION_CHANGED
ACCESSIBLE_ACTIVE_DESCENDANT_PROPERTY
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.
Accessible
AccessibleTable
,
Constant Field Values
ACCESSIBLE_TABLE_SUMMARY_CHANGED
public static final StringACCESSIBLE_TABLE_SUMMARY_CHANGED
ACCESSIBLE_TABLE_CAPTION_CHANGED
summary
summary
summary.
Constant Field Values
ACCESSIBLE_TABLE_MODEL_CHANGED
public static final StringACCESSIBLE_TABLE_MODEL_CHANGED
ACCESSIBLE_TABLE_SUMMARY_CHANGED
data
changed.
null
AccessibleTableModelChange
change.
AccessibleTable
AccessibleTableModelChange
Constant Field Values
ACCESSIBLE_TABLE_ROW_HEADER_CHANGED
public static final StringACCESSIBLE_TABLE_ROW_HEADER_CHANGED
ACCESSIBLE_TABLE_MODEL_CHANGED
the row header
changed
header
Constant Field Values
ACCESSIBLE_TABLE_ROW_DESCRIPTION_CHANGED
public static final StringACCESSIBLE_TABLE_ROW_DESCRIPTION_CHANGED
ACCESSIBLE_TABLE_ROW_HEADER_CHANGED
description
Integer
row index.
Constant Field Values
ACCESSIBLE_TABLE_COLUMN_HEADER_CHANGED
public static final StringACCESSIBLE_TABLE_COLUMN_HEADER_CHANGED
ACCESSIBLE_TABLE_ROW_DESCRIPTION_CHANGED
column header
AccessibleTableModelChange
header change.
AccessibleTableModelChange
,
Constant Field Values
ACCESSIBLE_TABLE_COLUMN_DESCRIPTION_CHANGED
public static final StringACCESSIBLE_TABLE_COLUMN_DESCRIPTION_CHANGED
ACCESSIBLE_TABLE_COLUMN_HEADER_CHANGED
description
Integer
column index.
Constant Field Values
ACCESSIBLE_ACTION_PROPERTY
public static final StringACCESSIBLE_ACTION_PROPERTY
ACCESSIBLE_TABLE_COLUMN_DESCRIPTION_CHANGED
supported set of actions
changed.
an Integer representing the old number of actions supported
new number of actions supported.
AccessibleAction
Constant Field Values
ACCESSIBLE_HYPERTEXT_OFFSET
public static final StringACCESSIBLE_HYPERTEXT_OFFSET
ACCESSIBLE_ACTION_PROPERTY
a hypertext element
received focus.
start index in the document
the previous element that had focus
start index in the document
the current element that has focus. A value of -1 indicates that an element does not or did not have focus.
AccessibleHyperlink
Constant Field Values
ACCESSIBLE_TEXT_PROPERTY
public static final StringACCESSIBLE_TEXT_PROPERTY
ACCESSIBLE_HYPERTEXT_OFFSET
PropertyChangeEvent which indicates that text has changed.
For text insertion, the oldValue is null and the newValue is an AccessibleTextSequence specifying the text that was inserted.
For text deletion, the oldValue is an AccessibleTextSequence specifying the text that was deleted and the newValue is null.
For text replacement, the oldValue is an AccessibleTextSequence specifying the old text and the newValue is an AccessibleTextSequence specifying the new text.
getAccessibleText()
addPropertyChangeListener(java.beans.PropertyChangeListener)
, #AccessibleText.AccessibleTextSequence,
Constant Field Values
ACCESSIBLE_INVALIDATE_CHILDREN
public static final
String
ACCESSIBLE_INVALIDATE_CHILDREN
PropertyChangeEvent which indicates that a significant change has occurred to the children of a component like a tree or text. This change notifies the event listener that it needs to reacquire the state of the subcomponents. The oldValue is null and the newValue is the component whose children have become invalid.
See Also:
getAccessibleText()
,
addPropertyChangeListener(java.beans.PropertyChangeListener)
, #AccessibleText.AccessibleTextSequence,
Constant Field Values
ACCESSIBLE_TEXT_ATTRIBUTES_CHANGED
public static final
String
ACCESSIBLE_TEXT_ATTRIBUTES_CHANGED
PropertyChangeEvent which indicates that text attributes have changed.
For attribute insertion, the oldValue is null and the newValue is an AccessibleAttributeSequence specifying the attributes that were inserted.
For attribute deletion, the oldValue is an AccessibleAttributeSequence specifying the attributes that were deleted and the newValue is null.
For attribute replacement, the oldValue is an AccessibleAttributeSequence specifying the old attributes and the newValue is an AccessibleAttributeSequence specifying the new attributes.
See Also:
getAccessibleText()
,
addPropertyChangeListener(java.beans.PropertyChangeListener)
, #AccessibleText.AccessibleAttributeSequence,
Constant Field Values
ACCESSIBLE_COMPONENT_BOUNDS_CHANGED
public static final
String
ACCESSIBLE_COMPONENT_BOUNDS_CHANGED
PropertyChangeEvent which indicates that a change has occurred in a component's bounds. The oldValue is null and the newValue is the component whose bounds has changed.
See Also:
addPropertyChangeListener(java.beans.PropertyChangeListener)
,
Constant Field Values
protected Accessible accessibleParent
protected String accessibleName
protected String accessibleDescription
| Constructor Detail |
|---|
public AccessibleContext()
| Method Detail |
|---|
public String getAccessibleName()
public void setAccessibleName(String s)
public String getAccessibleDescription()
public void setAccessibleDescription(String s)
public abstract AccessibleRole getAccessibleRole()
Note that the AccessibleRole class is also extensible, so custom component developers can define their own AccessibleRole's if the set of predefined roles is inadequate.
public abstract AccessibleStateSet getAccessibleStateSet()
public Accessible getAccessibleParent()
public void setAccessibleParent(Accessible a)
public abstract int getAccessibleIndexInParent()
public abstract int getAccessibleChildrenCount()
public abstract Accessible getAccessibleChild(int i)
public abstract Locale getLocale()
throws IllegalComponentStateException
public void addPropertyChangeListener(PropertyChangeListener listener)
public void removePropertyChangeListener(PropertyChangeListener listener)
public AccessibleAction getAccessibleAction()
public AccessibleComponent getAccessibleComponent()
public AccessibleSelection getAccessibleSelection()
public AccessibleText getAccessibleText()
public AccessibleEditableText getAccessibleEditableText()
public AccessibleValue getAccessibleValue()
public AccessibleIcon[] getAccessibleIcon()
public AccessibleRelationSet getAccessibleRelationSet()
public AccessibleTable getAccessibleTable()
public void firePropertyChange(String propertyName,
Object oldValue,
Object newValue)