Fields Summary |
---|
public static final String | ACCESSIBLE_NAME_PROPERTYConstant used to determine when the accessibleName property has
changed. The old value in the PropertyChangeEvent will be the old
accessibleName and the new value will be the new accessibleName. |
public static final String | ACCESSIBLE_DESCRIPTION_PROPERTYConstant used to determine when the accessibleDescription property has
changed. The old value in the PropertyChangeEvent will be the
old accessibleDescription and the new value will be the new
accessibleDescription. |
public static final String | ACCESSIBLE_STATE_PROPERTYConstant used to determine when the accessibleStateSet property has
changed. The old value will be the old AccessibleState and the new
value will be the new AccessibleState in the accessibleStateSet.
For example, if a component that supports the vertical and horizontal
states changes its orientation from vertical to horizontal, the old
value will be AccessibleState.VERTICAL and the new value will be
AccessibleState.HORIZONTAL. Please note that either value can also
be null. For example, when a component changes from being enabled
to disabled, the old value will be AccessibleState.ENABLED
and the new value will be null. |
public static final String | ACCESSIBLE_VALUE_PROPERTYConstant used to determine when the accessibleValue property has
changed. The old value in the PropertyChangeEvent will be a Number
representing the old value and the new value will be a Number
representing the new value |
public static final String | ACCESSIBLE_SELECTION_PROPERTYConstant used to determine when the accessibleSelection has changed.
The old and new values in the PropertyChangeEvent are currently
reserved for future use. |
public static final String | ACCESSIBLE_CARET_PROPERTYConstant 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. |
public static final String | ACCESSIBLE_VISIBLE_DATA_PROPERTYConstant 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. |
public static final String | ACCESSIBLE_CHILD_PROPERTYConstant 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. |
public static final String | ACCESSIBLE_ACTIVE_DESCENDANT_PROPERTYConstant 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. |
public static final String | ACCESSIBLE_TABLE_CAPTION_CHANGEDConstant 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. |
public static final String | ACCESSIBLE_TABLE_SUMMARY_CHANGEDConstant 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. |
public static final String | ACCESSIBLE_TABLE_MODEL_CHANGEDConstant used to indicate that table data has changed.
The old value in the PropertyChangeEvent will be null and the
new value will be an AccessibleTableModelChange representing
the table change. |
public static final String | ACCESSIBLE_TABLE_ROW_HEADER_CHANGEDConstant 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. |
public static final String | ACCESSIBLE_TABLE_ROW_DESCRIPTION_CHANGEDConstant 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. |
public static final String | ACCESSIBLE_TABLE_COLUMN_HEADER_CHANGEDConstant 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. |
public static final String | ACCESSIBLE_TABLE_COLUMN_DESCRIPTION_CHANGEDConstant 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. |
public static final String | ACCESSIBLE_ACTION_PROPERTYConstant used to indicate that the supported set of actions
has changed. The old value in the PropertyChangeEvent will
be an Integer representing the old number of actions supported
and the new value will be an Integer representing the new
number of actions supported. |
public static final String | ACCESSIBLE_HYPERTEXT_OFFSETConstant used to indicate that a hypertext element has received focus.
The old value in the PropertyChangeEvent will be an Integer
representing the start index in the document of the previous element
that had focus and the new value will be an Integer representing
the start index in the document of the current element that has
focus. A value of -1 indicates that an element does not or did
not have focus. |
public static final String | ACCESSIBLE_TEXT_PROPERTYPropertyChangeEvent 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. |
public static final String | ACCESSIBLE_INVALIDATE_CHILDRENPropertyChangeEvent 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. |
public static final String | ACCESSIBLE_TEXT_ATTRIBUTES_CHANGEDPropertyChangeEvent 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. |
public static final String | ACCESSIBLE_COMPONENT_BOUNDS_CHANGEDPropertyChangeEvent which indicates that a change has occurred
in a component's bounds.
The oldValue is the old component bounds and the newValue is
the new component bounds. |
protected Accessible | accessibleParentThe accessible parent of this object. |
protected String | accessibleNameA localized String containing the name of the object. |
protected String | accessibleDescriptionA localized String containing the description of the object. |
private PropertyChangeSupport | accessibleChangeSupportUsed to handle the listener list for property change events. |
private AccessibleRelationSet | relationSetUsed to represent the context's relation set |