|
Generated by JDiff |
||||||||
PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES |
This file contains all the changes in documentation in the packagejavax.accessibility
as colored differences. Deletions are shownlike 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.
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:Class AccessibleContext, AccessibleText getAccessibleText()@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
- {@link AccessibleAction} - the object can perform one or more actions. This interface provides the standard mechanism for an assistive technology to determine what those actions are and tell the object to perform them. Any object that can be manipulated should support this interface.
- {@link AccessibleComponent} - the object has a graphical representation. This interface provides the standard mechanism for an assistive technology to determine and set the graphical representation of the object. Any object that is rendered on the screen should support this interface.
- {@link AccessibleSelection} - the object allows its children to be selected. This interface provides the standard mechanism for an assistive technology to determine the currently selected children of the object as well as modify its selection set. Any object that has children that can be selected should support this interface.
- {@link AccessibleText} - the object presents editable textual information on the display. This interface provides the standard mechanism for an assistive technology to access that text via its content attributes and spatial location. Any object that contains editable text should support this interface.
- {@link AccessibleValue} - the object supports a numerical value. This interface provides the standard mechanism for an assistive technology to determine and set the current value of the object as well as obtain its minimum and maximum values. Any object that supports a numerical value should support this interface.
Gets the AccessibleText associated with this objectClass AccessibleContext, void setAccessibleDescription(String)presentlypresentingeditabletext on the display. @return AccessibleText if supported by object; else return null @see AccessibleText
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.
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 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 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.Class AccessibleRelationSet, boolean add(AccessibleRelation)4910/12/9903/01 @author Lynn Monsanto
Adds a new relation to the current relation setif it is not already present. If the relation is already in the relation set therelationtarget(s)setof the specified relation isunchanged andmerged with thereturntarget(s)value isof thefalseexisting relation. Otherwise the new relation is added to the relation setand 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
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.