JEditorPane.AccessibleJEditorPaneHTML (Java 2 Platform SE 5.0) (original) (raw)
javax.swing
Class JEditorPane.AccessibleJEditorPaneHTML
java.lang.Object
javax.accessibility.AccessibleContext
java.awt.Component.AccessibleAWTComponent
java.awt.Container.AccessibleAWTContainer
javax.swing.JComponent.AccessibleJComponent
javax.swing.text.JTextComponent.AccessibleJTextComponent
javax.swing.JEditorPane.AccessibleJEditorPane
javax.swing.JEditorPane.AccessibleJEditorPaneHTML
All Implemented Interfaces:
Serializable, EventListener, AccessibleAction, AccessibleComponent, AccessibleEditableText, AccessibleExtendedComponent, AccessibleText, CaretListener, DocumentListener
Enclosing class:
protected class JEditorPane.AccessibleJEditorPaneHTML
extends JEditorPane.AccessibleJEditorPane
This class provides support for AccessibleHypertext
, and is used in instances where the EditorKit
installed in this JEditorPane
is an instance ofHTMLEditorKit
.
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.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class javax.swing.JComponent.AccessibleJComponent |
---|
JComponent.AccessibleJComponent.AccessibleContainerHandler, JComponent.AccessibleJComponent.AccessibleFocusHandler |
Nested classes/interfaces inherited from class java.awt.Component.AccessibleAWTComponent |
---|
Component.AccessibleAWTComponent.AccessibleAWTComponentHandler, Component.AccessibleAWTComponent.AccessibleAWTFocusHandler |
Field Summary |
---|
Fields inherited from class javax.swing.JComponent.AccessibleJComponent |
---|
accessibleContainerHandler, accessibleFocusHandler |
Fields inherited from class java.awt.Component.AccessibleAWTComponent |
---|
accessibleAWTComponentHandler, accessibleAWTFocusHandler |
Fields inherited from interface javax.accessibility.AccessibleAction |
---|
DECREMENT, INCREMENT, TOGGLE_EXPAND |
Constructor Summary | |
---|---|
protected | JEditorPane.AccessibleJEditorPaneHTML() |
Method Summary | |
---|---|
Accessible | getAccessibleAt(Point p) Returns the Accessible child, if one exists, contained at the local coordinate Point. |
Accessible | getAccessibleChild(int i) Returns the specified Accessible child of the object. |
int | getAccessibleChildrenCount() Returns the number of accessible children of the object. |
AccessibleText | getAccessibleText() Get the AccessibleText associated with this object. |
Methods inherited from class javax.swing.JEditorPane.AccessibleJEditorPane |
---|
getAccessibleDescription, getAccessibleStateSet |
Methods inherited from class javax.swing.text.JTextComponent.AccessibleJTextComponent |
---|
caretUpdate, changedUpdate, [cut](../../javax/swing/text/JTextComponent.AccessibleJTextComponent.html#cut%28int, int%29), [delete](../../javax/swing/text/JTextComponent.AccessibleJTextComponent.html#delete%28int, int%29), doAccessibleAction, getAccessibleAction, getAccessibleActionCount, getAccessibleActionDescription, getAccessibleEditableText, getAccessibleRole, [getAfterIndex](../../javax/swing/text/JTextComponent.AccessibleJTextComponent.html#getAfterIndex%28int, int%29), [getAtIndex](../../javax/swing/text/JTextComponent.AccessibleJTextComponent.html#getAtIndex%28int, int%29), [getBeforeIndex](../../javax/swing/text/JTextComponent.AccessibleJTextComponent.html#getBeforeIndex%28int, int%29), getCaretPosition, getCharacterAttribute, getCharacterBounds, getCharCount, getIndexAtPoint, getSelectedText, getSelectionEnd, getSelectionStart, [getTextRange](../../javax/swing/text/JTextComponent.AccessibleJTextComponent.html#getTextRange%28int, int%29), [insertTextAtIndex](../../javax/swing/text/JTextComponent.AccessibleJTextComponent.html#insertTextAtIndex%28int, java.lang.String%29), insertUpdate, paste, removeUpdate, [replaceText](../../javax/swing/text/JTextComponent.AccessibleJTextComponent.html#replaceText%28int, int, java.lang.String%29), [selectText](../../javax/swing/text/JTextComponent.AccessibleJTextComponent.html#selectText%28int, int%29), [setAttributes](../../javax/swing/text/JTextComponent.AccessibleJTextComponent.html#setAttributes%28int, int, javax.swing.text.AttributeSet%29), setTextContents |
Methods inherited from class javax.swing.JComponent.AccessibleJComponent |
---|
addPropertyChangeListener, getAccessibleKeyBinding, getAccessibleName, getBorderTitle, getTitledBorderText, getToolTipText, removePropertyChangeListener |
Methods inherited from class javax.accessibility.AccessibleContext |
---|
[firePropertyChange](../../javax/accessibility/AccessibleContext.html#firePropertyChange%28java.lang.String, java.lang.Object, java.lang.Object%29), getAccessibleIcon, getAccessibleRelationSet, getAccessibleSelection, getAccessibleTable, getAccessibleValue, setAccessibleDescription, setAccessibleName, setAccessibleParent |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, [wait](../../java/lang/Object.html#wait%28long, int%29) |
Methods inherited from interface javax.accessibility.AccessibleComponent |
---|
addFocusListener, contains, getBackground, getBounds, getCursor, getFont, getFontMetrics, getForeground, getLocation, getLocationOnScreen, getSize, isEnabled, isFocusTraversable, isShowing, isVisible, removeFocusListener, requestFocus, setBackground, setBounds, setCursor, setEnabled, setFont, setForeground, setLocation, setSize, setVisible |
Constructor Detail |
---|
JEditorPane.AccessibleJEditorPaneHTML
protected JEditorPane.AccessibleJEditorPaneHTML()
Method Detail |
---|
getAccessibleText
public AccessibleText getAccessibleText()
Description copied from class: [JTextComponent.AccessibleJTextComponent](../../javax/swing/text/JTextComponent.AccessibleJTextComponent.html#getAccessibleText%28%29)
Get the AccessibleText associated with this object. In the implementation of the Java Accessibility API for this class, return this object, which is responsible for implementing the AccessibleText interface on behalf of itself.
Overrides:
[getAccessibleText](../../javax/swing/text/JTextComponent.AccessibleJTextComponent.html#getAccessibleText%28%29)
in class [JTextComponent.AccessibleJTextComponent](../../javax/swing/text/JTextComponent.AccessibleJTextComponent.html "class in javax.swing.text")
Returns:
this object
See Also:
getAccessibleChildrenCount
public int getAccessibleChildrenCount()
Returns the number of accessible children of the object.
Overrides:
[getAccessibleChildrenCount](../../javax/swing/JComponent.AccessibleJComponent.html#getAccessibleChildrenCount%28%29)
in class [JComponent.AccessibleJComponent](../../javax/swing/JComponent.AccessibleJComponent.html "class in javax.swing")
Returns:
the number of accessible children of the object.
getAccessibleChild
public Accessible getAccessibleChild(int 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.
Overrides:
[getAccessibleChild](../../javax/swing/JComponent.AccessibleJComponent.html#getAccessibleChild%28int%29)
in class [JComponent.AccessibleJComponent](../../javax/swing/JComponent.AccessibleJComponent.html "class in javax.swing")
Parameters:
i
- zero-based index of child
Returns:
the Accessible child of the object
See Also:
getAccessibleAt
public Accessible getAccessibleAt(Point p)
Returns the Accessible child, if one exists, contained at the local coordinate Point.
Specified by:
[getAccessibleAt](../../javax/accessibility/AccessibleComponent.html#getAccessibleAt%28java.awt.Point%29)
in interface [AccessibleComponent](../../javax/accessibility/AccessibleComponent.html "interface in javax.accessibility")
Overrides:
[getAccessibleAt](../../java/awt/Container.AccessibleAWTContainer.html#getAccessibleAt%28java.awt.Point%29)
in class [Container.AccessibleAWTContainer](../../java/awt/Container.AccessibleAWTContainer.html "class in java.awt")
Parameters:
p
- The point relative to the coordinate system of this object.
Returns:
the Accessible, if it exists, at the specified location; otherwise null
Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2004, 2010 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.