Generated by
JDiff

javax.accessibility Documentation Differences

This file contains all the changes in documentation in the package javax.accessibility as colored differences. Deletions are shown like this, and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a <code> tag will cause all subsequent paragraphs to be displayed differently.

Class 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:

@beaninfo attribute: isContainer false description: Minimal information that all accessible objects return @version 1.29 10/05/99 @author Peter Korn @author Hans Muller @author Willie Walker @author Lynn Monsanto
Class AccessibleContext, AccessibleText getAccessibleText()

Gets the AccessibleText associated with this object presentlypresenting editable text on the display. @return AccessibleText if supported by object; else return null @see AccessibleText
Class AccessibleContext, void setAccessibleDescription(String)

Sets the accessible description of this object. Changing the name will cause a PropertyChangeEvent to be fired for the ACCESSIBLE_DESCRIPTION_PROPERTY property. @param s the new localized description of the object @see #setAccessibleName @see #addPropertyChangeListener @beaninfo preferred: true description: Sets the accessible description for the component.
Class AccessibleContext, void setAccessibleName(String)

Sets the localized accessible name of this object. Changing the name will cause a PropertyChangeEvent to be fired for the ACCESSIBLE_NAME_PROPERTY property. @param s the new localized name of the object. @see #getAccessibleName @see #addPropertyChangeListener @beaninfo preferred: true description: Sets the accessible name for the component.

Class AccessibleHyperlink

Encapsulation of a link or set of links (e.g. client side imagemap) in a Hypertext document @see Accessible @see Accessible#getAccessibleContext @see AccessibleContext @see AccessibleText @see AccessibleContext#getAccessibleText @version 1.9 0211 12/0203/0001 @author Peter Korn

Class AccessibleRelation

Class AccessibleRelation describes a relation between the object that implements the AccessibleRelation and one or more other objects. The actual relations that an object has with other objects are defined as an AccessibleRelationSet which is a composed set of AccessibleRelations.

The toDisplayString method allows you to obtain the localized string for a locale independent key from a predefined ResourceBundle for the keys defined in this class.

The constants in this class present a strongly typed enumeration of common object roles. A public constructor for this class has been purposely omitted and applications should use one of the constants from this class. If the constants in this class are not sufficient to describe the role of an object a subclass should be generated from this class and it should provide constants in a similar manner. @version 1.6 @(#)AccessibleRelation.java 1.6 @author Lynn Monsanto


Class AccessibleRelationSet

Class AccessibleRelationSet determines a component's relation set. The relation set of a component is a set of AccessibleRelation objects that describe the component's relationships with other components. @see AccessibleRelation @version 1.49 10/12/9903/01 @author Lynn Monsanto
Class AccessibleRelationSet, boolean add(AccessibleRelation)

Adds a new relation to the current relation set if it is not already present. If the relation is already in the relation set the relationtarget(s) setof the specified relation is unchanged andmerged with the returntarget(s) value isof the falseexisting relation. Otherwise the new relation is added to the relation set and the return value is true. @param relation the relation to add to the relation set @return true if relation is added to the relation set; false if the relation set is unchanged

Class AccessibleResourceBundle

A resource bundle containing the localized strings in the accessibility package. This is meant only for internal use by Java Accessibility and is not meant to be used by assistive technologies or applications. @version %I% %G% %U%1.29 12/03/01 20:07:55 @author Willie Walker @deprecated This class is deprecated as of version 1.3 of the Java 2 Platform.