Java Doc for AccessibleContext.java in  » 6.0-JDK-Core » accessibility » javax » accessibility » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » accessibility » javax.accessibility 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.accessibility.AccessibleContext

AccessibleContext
abstract public class AccessibleContext (Code)
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:

  • 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.
  • 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.
  • 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.
  • 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.
  • 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.

version:
   1.51 05/05/07
author:
   Peter Korn
author:
   Hans Muller
author:
   Willie Walker
author:
   Lynn Monsanto


Field Summary
final public static  StringACCESSIBLE_ACTION_PROPERTY
     Constant used to indicate that the supported set of actions has changed.
final public static  StringACCESSIBLE_ACTIVE_DESCENDANT_PROPERTY
     Constant used to determine when the active descendant of a component has changed.
final public static  StringACCESSIBLE_CARET_PROPERTY
     Constant used to determine when the accessibleText caret has changed.
final public static  StringACCESSIBLE_CHILD_PROPERTY
     Constant used to determine when Accessible children are added/removed from the object.
final public static  StringACCESSIBLE_COMPONENT_BOUNDS_CHANGED
     PropertyChangeEvent which indicates that a change has occurred in a component's bounds.
final public static  StringACCESSIBLE_DESCRIPTION_PROPERTY
     Constant used to determine when the accessibleDescription property has changed.
final public static  StringACCESSIBLE_HYPERTEXT_OFFSET
     Constant 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.
final public static  StringACCESSIBLE_INVALIDATE_CHILDREN
     PropertyChangeEvent which indicates that a significant change has occurred to the children of a component like a tree or text.
final public static  StringACCESSIBLE_NAME_PROPERTY
     Constant used to determine when the accessibleName property has changed.
final public static  StringACCESSIBLE_SELECTION_PROPERTY
     Constant used to determine when the accessibleSelection has changed.
final public static  StringACCESSIBLE_STATE_PROPERTY
     Constant used to determine when the accessibleStateSet property has changed.
final public static  StringACCESSIBLE_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.
final public static  StringACCESSIBLE_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.
final public static  StringACCESSIBLE_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.
final public static  StringACCESSIBLE_TABLE_MODEL_CHANGED
     Constant used to indicate that table data has changed.
final public static  StringACCESSIBLE_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.
final public static  StringACCESSIBLE_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.
final public static  StringACCESSIBLE_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.
final public static  StringACCESSIBLE_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.
final public static  StringACCESSIBLE_TEXT_PROPERTY
     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.
final public static  StringACCESSIBLE_VALUE_PROPERTY
     Constant used to determine when the accessibleValue property has changed.
final public static  StringACCESSIBLE_VISIBLE_DATA_PROPERTY
     Constant used to determine when the visual appearance of the object has changed.
protected  StringaccessibleDescription
     A localized String containing the description of the object.
protected  StringaccessibleName
     A localized String containing the name of the object.
protected  AccessibleaccessibleParent
     The accessible parent of this object.


Method Summary
public  voidaddPropertyChangeListener(PropertyChangeListener listener)
     Adds a PropertyChangeListener to the listener list.
public  voidfirePropertyChange(String propertyName, Object oldValue, Object newValue)
     Support for reporting bound property changes.
public  AccessibleActiongetAccessibleAction()
     Gets the AccessibleAction associated with this object that supports one or more actions.
abstract public  AccessiblegetAccessibleChild(int i)
     Returns the specified Accessible child of the object.
abstract public  intgetAccessibleChildrenCount()
     Returns the number of accessible children of the object.
public  AccessibleComponentgetAccessibleComponent()
     Gets the AccessibleComponent associated with this object that has a graphical representation.
public  StringgetAccessibleDescription()
     Gets the accessibleDescription property of this object.
public  AccessibleEditableTextgetAccessibleEditableText()
     Gets the AccessibleEditableText associated with this object presenting editable text on the display.
public  AccessibleIcon[]getAccessibleIcon()
    
abstract public  intgetAccessibleIndexInParent()
     Gets the 0-based index of this object in its accessible parent.
public  StringgetAccessibleName()
     Gets the accessibleName property of this object.
public  AccessiblegetAccessibleParent()
     Gets the Accessible parent of this object.
public  AccessibleRelationSetgetAccessibleRelationSet()
    
abstract public  AccessibleRolegetAccessibleRole()
     Gets the role of this object.
public  AccessibleSelectiongetAccessibleSelection()
     Gets the AccessibleSelection associated with this object which allows its Accessible children to be selected.
abstract public  AccessibleStateSetgetAccessibleStateSet()
     Gets the state set of this object.
public  AccessibleTablegetAccessibleTable()
    
public  AccessibleTextgetAccessibleText()
     Gets the AccessibleText associated with this object presenting text on the display.
public  AccessibleValuegetAccessibleValue()
     Gets the AccessibleValue associated with this object that supports a Numerical value.
abstract public  LocalegetLocale()
     Gets the locale of the component.
public  voidremovePropertyChangeListener(PropertyChangeListener listener)
     Removes a PropertyChangeListener from the listener list.
public  voidsetAccessibleDescription(String s)
     Sets the accessible description of this object.
public  voidsetAccessibleName(String s)
     Sets the localized accessible name of this object.
public  voidsetAccessibleParent(Accessible a)
     Sets the Accessible parent of this object.

Field Detail
ACCESSIBLE_ACTION_PROPERTY
final public static String ACCESSIBLE_ACTION_PROPERTY(Code)
Constant 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.
See Also:   AccessibleAction



ACCESSIBLE_ACTIVE_DESCENDANT_PROPERTY
final public static String ACCESSIBLE_ACTIVE_DESCENDANT_PROPERTY(Code)
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.
See Also:   AccessibleContext.addPropertyChangeListener



ACCESSIBLE_CARET_PROPERTY
final public static String ACCESSIBLE_CARET_PROPERTY(Code)
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.
See Also:   AccessibleContext.addPropertyChangeListener



ACCESSIBLE_CHILD_PROPERTY
final public static String ACCESSIBLE_CHILD_PROPERTY(Code)
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.
See Also:   AccessibleContext.addPropertyChangeListener



ACCESSIBLE_COMPONENT_BOUNDS_CHANGED
final public static String ACCESSIBLE_COMPONENT_BOUNDS_CHANGED(Code)
PropertyChangeEvent 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.
See Also:   AccessibleContext.addPropertyChangeListener
since:
   1.5



ACCESSIBLE_DESCRIPTION_PROPERTY
final public static String ACCESSIBLE_DESCRIPTION_PROPERTY(Code)
Constant 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.
See Also:   AccessibleContext.getAccessibleDescription
See Also:   AccessibleContext.addPropertyChangeListener



ACCESSIBLE_HYPERTEXT_OFFSET
final public static String ACCESSIBLE_HYPERTEXT_OFFSET(Code)
Constant 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.
See Also:   AccessibleHyperlink



ACCESSIBLE_INVALIDATE_CHILDREN
final public static String ACCESSIBLE_INVALIDATE_CHILDREN(Code)
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:   AccessibleContext.getAccessibleText
See Also:   AccessibleContext.addPropertyChangeListener
See Also:   AccessibleContext.AccessibleText
since:
   1.5



ACCESSIBLE_NAME_PROPERTY
final public static String ACCESSIBLE_NAME_PROPERTY(Code)
Constant 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.
See Also:   AccessibleContext.getAccessibleName
See Also:   AccessibleContext.addPropertyChangeListener



ACCESSIBLE_SELECTION_PROPERTY
final public static String ACCESSIBLE_SELECTION_PROPERTY(Code)
Constant used to determine when the accessibleSelection has changed. The old and new values in the PropertyChangeEvent are currently reserved for future use.
See Also:   AccessibleContext.getAccessibleSelection
See Also:   AccessibleContext.addPropertyChangeListener



ACCESSIBLE_STATE_PROPERTY
final public static String ACCESSIBLE_STATE_PROPERTY(Code)
Constant 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.
See Also:   AccessibleContext.getAccessibleStateSet
See Also:   AccessibleState
See Also:   AccessibleStateSet
See Also:   AccessibleContext.addPropertyChangeListener



ACCESSIBLE_TABLE_CAPTION_CHANGED
final public static String ACCESSIBLE_TABLE_CAPTION_CHANGED(Code)
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.
See Also:   Accessible
See Also:   AccessibleTable



ACCESSIBLE_TABLE_COLUMN_DESCRIPTION_CHANGED
final public static String ACCESSIBLE_TABLE_COLUMN_DESCRIPTION_CHANGED(Code)
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.
See Also:   AccessibleTable



ACCESSIBLE_TABLE_COLUMN_HEADER_CHANGED
final public static String ACCESSIBLE_TABLE_COLUMN_HEADER_CHANGED(Code)
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.
See Also:   AccessibleTable
See Also:   AccessibleTableModelChange



ACCESSIBLE_TABLE_MODEL_CHANGED
final public static String ACCESSIBLE_TABLE_MODEL_CHANGED(Code)
Constant 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.
See Also:   AccessibleTable
See Also:   AccessibleTableModelChange



ACCESSIBLE_TABLE_ROW_DESCRIPTION_CHANGED
final public static String ACCESSIBLE_TABLE_ROW_DESCRIPTION_CHANGED(Code)
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.
See Also:   AccessibleTable



ACCESSIBLE_TABLE_ROW_HEADER_CHANGED
final public static String ACCESSIBLE_TABLE_ROW_HEADER_CHANGED(Code)
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.
See Also:   AccessibleTable
See Also:   AccessibleTableModelChange



ACCESSIBLE_TABLE_SUMMARY_CHANGED
final public static String ACCESSIBLE_TABLE_SUMMARY_CHANGED(Code)
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.
See Also:   Accessible
See Also:   AccessibleTable



ACCESSIBLE_TEXT_ATTRIBUTES_CHANGED
final public static String ACCESSIBLE_TEXT_ATTRIBUTES_CHANGED(Code)
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:   AccessibleContext.getAccessibleText
See Also:   AccessibleContext.addPropertyChangeListener
See Also:   AccessibleContext.AccessibleText
since:
   1.5



ACCESSIBLE_TEXT_PROPERTY
final public static String ACCESSIBLE_TEXT_PROPERTY(Code)
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.
See Also:   AccessibleContext.getAccessibleText
See Also:   AccessibleContext.addPropertyChangeListener
See Also:   AccessibleContext.AccessibleText



ACCESSIBLE_VALUE_PROPERTY
final public static String ACCESSIBLE_VALUE_PROPERTY(Code)
Constant 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
See Also:   AccessibleContext.getAccessibleValue
See Also:   AccessibleContext.addPropertyChangeListener



ACCESSIBLE_VISIBLE_DATA_PROPERTY
final public static String ACCESSIBLE_VISIBLE_DATA_PROPERTY(Code)
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.
See Also:   AccessibleContext.addPropertyChangeListener



accessibleDescription
protected String accessibleDescription(Code)
A localized String containing the description of the object.
See Also:   AccessibleContext.getAccessibleDescription
See Also:   AccessibleContext.setAccessibleDescription
See Also:   



accessibleName
protected String accessibleName(Code)
A localized String containing the name of the object.
See Also:   AccessibleContext.getAccessibleName
See Also:   AccessibleContext.setAccessibleName
See Also:   



accessibleParent
protected Accessible accessibleParent(Code)
The accessible parent of this object.
See Also:   AccessibleContext.getAccessibleParent
See Also:   AccessibleContext.setAccessibleParent





Method Detail
addPropertyChangeListener
public void addPropertyChangeListener(PropertyChangeListener listener)(Code)
Adds a PropertyChangeListener to the listener list. The listener is registered for all Accessible properties and will be called when those properties change.
See Also:   AccessibleContext.ACCESSIBLE_NAME_PROPERTY
See Also:   AccessibleContext.ACCESSIBLE_DESCRIPTION_PROPERTY
See Also:   AccessibleContext.ACCESSIBLE_STATE_PROPERTY
See Also:   AccessibleContext.ACCESSIBLE_VALUE_PROPERTY
See Also:   AccessibleContext.ACCESSIBLE_SELECTION_PROPERTY
See Also:   AccessibleContext.ACCESSIBLE_TEXT_PROPERTY
See Also:   AccessibleContext.ACCESSIBLE_VISIBLE_DATA_PROPERTY
Parameters:
  listener - The PropertyChangeListener to be added



firePropertyChange
public void firePropertyChange(String propertyName, Object oldValue, Object newValue)(Code)
Support for reporting bound property changes. If oldValue and newValue are not equal and the PropertyChangeEvent listener list is not empty, then fire a PropertyChange event to each listener. In general, this is for use by the Accessible objects themselves and should not be called by an application program.
Parameters:
  propertyName - The programmatic name of the property thatwas changed.
Parameters:
  oldValue - The old value of the property.
Parameters:
  newValue - The new value of the property.
See Also:   java.beans.PropertyChangeSupport
See Also:   AccessibleContext.addPropertyChangeListener
See Also:   AccessibleContext.removePropertyChangeListener
See Also:   AccessibleContext.ACCESSIBLE_NAME_PROPERTY
See Also:   AccessibleContext.ACCESSIBLE_DESCRIPTION_PROPERTY
See Also:   AccessibleContext.ACCESSIBLE_STATE_PROPERTY
See Also:   AccessibleContext.ACCESSIBLE_VALUE_PROPERTY
See Also:   AccessibleContext.ACCESSIBLE_SELECTION_PROPERTY
See Also:   AccessibleContext.ACCESSIBLE_TEXT_PROPERTY
See Also:   AccessibleContext.ACCESSIBLE_VISIBLE_DATA_PROPERTY



getAccessibleAction
public AccessibleAction getAccessibleAction()(Code)
Gets the AccessibleAction associated with this object that supports one or more actions. AccessibleAction if supported by object; else return null
See Also:   AccessibleAction



getAccessibleChild
abstract public Accessible getAccessibleChild(int i)(Code)
Returns the specified Accessible child of the object. The Accessible children of an Accessible object are zero-based, so the first child of an Accessible child is at index 0, the second child is at index 1, and so on.
Parameters:
  i - zero-based index of child the Accessible child of the object
See Also:   AccessibleContext.getAccessibleChildrenCount



getAccessibleChildrenCount
abstract public int getAccessibleChildrenCount()(Code)
Returns the number of accessible children of the object. the number of accessible children of the object.



getAccessibleComponent
public AccessibleComponent getAccessibleComponent()(Code)
Gets the AccessibleComponent associated with this object that has a graphical representation. AccessibleComponent if supported by object; else return null
See Also:   AccessibleComponent



getAccessibleDescription
public String getAccessibleDescription()(Code)
Gets the accessibleDescription property of this object. The accessibleDescription property of this object is a short localized phrase describing the purpose of the object. For example, in the case of a 'Cancel' button, the accessibleDescription could be 'Ignore changes and close dialog box.' the localized description of the object; null if this object does not have a description
See Also:   AccessibleContext.setAccessibleDescription



getAccessibleEditableText
public AccessibleEditableText getAccessibleEditableText()(Code)
Gets the AccessibleEditableText associated with this object presenting editable text on the display. AccessibleEditableText if supported by object; else return null
See Also:   AccessibleEditableText
since:
   1.4



getAccessibleIcon
public AccessibleIcon[] getAccessibleIcon()(Code)
Gets the AccessibleIcons associated with an object that has one or more associated icons an array of AccessibleIcon if supported by object; otherwise return null
See Also:   AccessibleIcon
since:
   1.3



getAccessibleIndexInParent
abstract public int getAccessibleIndexInParent()(Code)
Gets the 0-based index of this object in its accessible parent. the 0-based index of this object in its parent; -1 if this object does not have an accessible parent.
See Also:   AccessibleContext.getAccessibleParent
See Also:   
See Also:   AccessibleContext.getAccessibleChildrenCount
See Also:   AccessibleContext.getAccessibleChild



getAccessibleName
public String getAccessibleName()(Code)
Gets the accessibleName property of this object. The accessibleName property of an object is a localized String that designates the purpose of the object. For example, the accessibleName property of a label or button might be the text of the label or button itself. In the case of an object that doesn't display its name, the accessibleName should still be set. For example, in the case of a text field used to enter the name of a city, the accessibleName for the en_US locale could be 'city.' the localized name of the object; null if this object does not have a name
See Also:   AccessibleContext.setAccessibleName



getAccessibleParent
public Accessible getAccessibleParent()(Code)
Gets the Accessible parent of this object. the Accessible parent of this object; null if thisobject does not have an Accessible parent



getAccessibleRelationSet
public AccessibleRelationSet getAccessibleRelationSet()(Code)
Gets the AccessibleRelationSet associated with an object an AccessibleRelationSet if supported by object;otherwise return null
See Also:   AccessibleRelationSet
since:
   1.3



getAccessibleRole
abstract public AccessibleRole getAccessibleRole()(Code)
Gets the role of this object. The role of the object is the generic purpose or use of the class of this object. For example, the role of a push button is AccessibleRole.PUSH_BUTTON. The roles in AccessibleRole are provided so component developers can pick from a set of predefined roles. This enables assistive technologies to provide a consistent interface to various tweaked subclasses of components (e.g., use AccessibleRole.PUSH_BUTTON for all components that act like a push button) as well as distinguish between sublasses that behave differently (e.g., AccessibleRole.CHECK_BOX for check boxes and AccessibleRole.RADIO_BUTTON for radio buttons).

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. an instance of AccessibleRole describing the role of the object
See Also:   AccessibleRole




getAccessibleSelection
public AccessibleSelection getAccessibleSelection()(Code)
Gets the AccessibleSelection associated with this object which allows its Accessible children to be selected. AccessibleSelection if supported by object; else return null
See Also:   AccessibleSelection



getAccessibleStateSet
abstract public AccessibleStateSet getAccessibleStateSet()(Code)
Gets the state set of this object. The AccessibleStateSet of an object is composed of a set of unique AccessibleStates. A change in the AccessibleStateSet of an object will cause a PropertyChangeEvent to be fired for the ACCESSIBLE_STATE_PROPERTY property. an instance of AccessibleStateSet containing the current state set of the object
See Also:   AccessibleStateSet
See Also:   AccessibleState
See Also:   AccessibleContext.addPropertyChangeListener



getAccessibleTable
public AccessibleTable getAccessibleTable()(Code)
Gets the AccessibleTable associated with an object an AccessibleTable if supported by object;otherwise return null
See Also:   AccessibleTable
since:
   1.3



getAccessibleText
public AccessibleText getAccessibleText()(Code)
Gets the AccessibleText associated with this object presenting text on the display. AccessibleText if supported by object; else return null
See Also:   AccessibleText



getAccessibleValue
public AccessibleValue getAccessibleValue()(Code)
Gets the AccessibleValue associated with this object that supports a Numerical value. AccessibleValue if supported by object; else return null
See Also:   AccessibleValue



getLocale
abstract public Locale getLocale() throws IllegalComponentStateException(Code)
Gets the locale of the component. If the component does not have a locale, then the locale of its parent is returned. this component's locale. If this component does not have a locale, the locale of its parent is returned.
exception:
  IllegalComponentStateException - If the Component does not have its own locale and has not yet been added to a containment hierarchy such that the locale can bedetermined from the containing parent.



removePropertyChangeListener
public void removePropertyChangeListener(PropertyChangeListener listener)(Code)
Removes a PropertyChangeListener from the listener list. This removes a PropertyChangeListener that was registered for all properties.
Parameters:
  listener - The PropertyChangeListener to be removed



setAccessibleDescription
public void setAccessibleDescription(String s)(Code)
Sets the accessible description of this object. Changing the name will cause a PropertyChangeEvent to be fired for the ACCESSIBLE_DESCRIPTION_PROPERTY property.
Parameters:
  s - the new localized description of the object
See Also:   AccessibleContext.setAccessibleName
See Also:   AccessibleContext.addPropertyChangeListener



setAccessibleName
public void setAccessibleName(String s)(Code)
Sets the localized accessible name of this object. Changing the name will cause a PropertyChangeEvent to be fired for the ACCESSIBLE_NAME_PROPERTY property.
Parameters:
  s - the new localized name of the object.
See Also:   AccessibleContext.getAccessibleName
See Also:   AccessibleContext.addPropertyChangeListener



setAccessibleParent
public void setAccessibleParent(Accessible a)(Code)
Sets the Accessible parent of this object. This is meant to be used only in the situations where the actual component's parent should not be treated as the component's accessible parent and is a method that should only be called by the parent of the accessible child.
Parameters:
  a - - Accessible to be set as the parent



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.