--- old/src/java.desktop/share/classes/javax/accessibility/package.html 2015-08-11 19:35:57.159331253 +0400 +++ new/src/java.desktop/share/classes/javax/accessibility/package.html 2015-08-11 19:35:56.999331260 +0400 @@ -43,7 +43,7 @@ Interface Accessible Interface Accessible is the main interface of the Java Accessibility API. All components that support the Java Accessibility -API must implement this interface. It contains a single method, getAccessibleContext, +API must implement this interface. It contains a single method, getAccessibleContext, that returns an instance of the class AccessibleContext. Sun thinks that implementing this interface is the absolute minimum requirement of every object that is part of the user interface of a Java application, @@ -53,7 +53,7 @@ AccessibleContext AccessibleContext represents the minimum information all accessible objects return and is obtained by calling the -getAccessibleContext method on an object that implements the Accessible +getAccessibleContext method on an object that implements the Accessible interface. This information includes the accessible name, description, role, and state of the object, as well as information about the parent and children of @@ -69,7 +69,7 @@ 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 those actions. Any object that can be manipulated -should return an object that implements this interface when the getAccessibleAction +should return an object that implements this interface when the getAccessibleAction method is called on an AccessibleContext.
  • @@ -77,7 +77,7 @@ 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 return -an object that implements this interface when the getAccessibleComponent +an object that implements this interface when the getAccessibleComponent method is called on an AccessibleContext.
  • @@ -86,7 +86,7 @@ mechanism for an assistive technology to determine the currently selected children as well as modify the selection set. Any object that has children that can be selected should return an object that implements this interface -when the getAccessibleSelection method is called on an AccessibleContext.
  • +when the getAccessibleSelection method is called on an AccessibleContext.
  • AccessibleText - the object presents @@ -94,7 +94,7 @@ standard mechanism for an assistive technology to access that text via its content, attributes, and spatial location. Any object that contains editable text should return an object that implements this interface when -the getAccessibleText method is called on an AccessibleContext.
  • +the getAccessibleText method is called on an AccessibleContext.
  • AccessibleHypertext - the object @@ -102,25 +102,25 @@ the standard mechanism for an assistive technology to access that hypertext via its content, attributes, and spatial location. Any object that contains hypertext should return an object that implements this interface when the -getAccessibleText method is called on an AccessibleContext.
  • +getAccessibleText method is called on an AccessibleContext.
  • 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 the minimum and maximum values. Any object that supports a numerical -value should return an object that implements this interface when the getAccessibleValue +value should return an object that implements this interface when the getAccessibleValue method is called on an AccessibleContext.
  • Class AccessibleRole

    This class encapsulates the Accessible object's role in the user interface -and is obtained by calling the getAccessibleRole method on an +and is obtained by calling the getAccessibleRole method on an AccessibleContext. Accessible roles include "Check box", "Menu Item", "Panel", etc. These roles are identified by the -constants in this class such as AccessibleRole.CHECK_BOX, AccessibleRole.MENU_ITEM, -and AccessibleRole.PANEL. The constants in this class present +constants in this class such as AccessibleRole.CHECK_BOX, AccessibleRole.MENU_ITEM, +and AccessibleRole.PANEL. 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. Although this class pre-defines a large @@ -131,10 +131,10 @@ Class AccessibleState This class encapsulates a particular state of the Accessible object. Accessible states include things like "Armed", "Busy", "Checked", "Focused", etc. -These roles are identified by the constants in this class such as AccessibleState.ARMED, -AccessibleState.BUSY, AccessibleState.CHECKED, and AccessibleState.FOCUSED. +These roles are identified by the constants in this class such as AccessibleState.ARMED, +AccessibleState.BUSY, AccessibleState.CHECKED, and AccessibleState.FOCUSED. The sum of all the states of an Accessible object is called the AccessibleStateSet, -and can be obtained by calling the getAccessibleStateSet method +and can be obtained by calling the getAccessibleStateSet method on an AccessibleContext.

    The constants in this class present a strongly typed enumeration of @@ -148,7 +148,7 @@ Class AccessibleStateSet This class encapsulates a collection of states of the Accessible object -and is obtained by calling the getAccessibleStateSet method on +and is obtained by calling the getAccessibleStateSet method on an AccessibleContext. Since an object might have multiple states (e.g. it might be both "Checked" and "Focused"), this class is needed to encapsulate a collection of these states. Methods @@ -173,7 +173,7 @@

    Applications can determine if an object supports the AccessibleAction interface by first obtaining its AccessibleContext -(see Accessible) and then calling the getAccessibleAction +(see Accessible) and then calling the getAccessibleAction method of AccessibleContext. If the return value is not null, the object supports this interface.

    @@ -186,7 +186,7 @@

    Applications can determine if an object supports the AccessibleComponent interface by first obtaining its AccessibleContext -(see Accessible) and then calling the getAccessibleComponent +(see Accessible) and then calling the getAccessibleComponent method of AccessibleContext. If the return value is not null, the object supports this interface.

    @@ -200,7 +200,7 @@

    Applications can determine if an object supports the AccessibleSelection interface by first obtaining its AccessibleContext -(see Accessible) and then calling the getAccessibleSelection +(see Accessible) and then calling the getAccessibleSelection method of AccessibleContext. If the return value is not null, the object supports this interface.

    @@ -222,7 +222,7 @@

    Applications can determine if an object supports the AccessibleText interface by first obtaining its AccessibleContext -(see Accessible) and then calling the getAccessibleText +(see Accessible) and then calling the getAccessibleText method of AccessibleContext. If the return value is not null, the object supports this interface.

    @@ -256,7 +256,7 @@

    Applications can determine if an object supports the AccessibleValue interface by first obtaining its AccessibleContext -(see Accessible) and then calling the getAccessibleValue +(see Accessible) and then calling the getAccessibleValue method of AccessibleContext. If the return value is not null, the object supports this interface.