com.tivoli.twg.guilibs
Class AnimationPanel.AccessibleStatusIndicator

java.lang.Object
  extended byAccessibleJPanel
      extended bycom.tivoli.twg.guilibs.AnimationPanel.AccessibleStatusIndicator
Enclosing class:
AnimationPanel

protected class AnimationPanel.AccessibleStatusIndicator
extends AccessibleJPanel

This class implements accessibility support for the JPanel class. It provides an implementation of the Java Accessibility API appropriate to panel user-interface elements.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeansTM has been added to the java.beans package. Please see XMLEncoder.

See Also:
Serialized Form

Constructor Summary
AnimationPanel.AccessibleStatusIndicator()
           
 
Method Summary
 javax.accessibility.AccessibleRole getAccessibleRole()
          Gets the role of this object.
 javax.accessibility.AccessibleStateSet getAccessibleStateSet()
          Gets the state of this object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AnimationPanel.AccessibleStatusIndicator

public AnimationPanel.AccessibleStatusIndicator()
Method Detail

getAccessibleStateSet

public javax.accessibility.AccessibleStateSet getAccessibleStateSet()
Gets the state of this object.

Returns:
an instance of AccessibleStateSet containing the current state set of the object
See Also:
AccessibleState

getAccessibleRole

public javax.accessibility.AccessibleRole getAccessibleRole()
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.

Returns:
an instance of AccessibleRole describing the role of the object
See Also:
AccessibleRole