javax.swing
protected class: JRootPane.AccessibleJRootPane [javadoc |
source]
java.lang.Object
AccessibleJComponent
javax.swing.JRootPane$AccessibleJRootPane
This class implements accessibility support for the
JRootPane class. It provides an implementation of the
Java Accessibility API appropriate to root pane 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 java.beans.XMLEncoder .
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.swing.JRootPane$AccessibleJRootPane Detail: |
public Accessible getAccessibleChild(int i) {
return super.getAccessibleChild(i);
}
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. |
public int getAccessibleChildrenCount() {
return super.getAccessibleChildrenCount();
}
Returns the number of accessible children of the object. |
public AccessibleRole getAccessibleRole() {
return AccessibleRole.ROOT_PANE;
}
Get the role of this object. |