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.JTextField.AccessibleJTextField
javax.swing.JPasswordField.AccessibleJPasswordField
- All Implemented Interfaces:
Serializable
,EventListener
,AccessibleAction
,AccessibleComponent
,AccessibleEditableText
,AccessibleExtendedComponent
,AccessibleExtendedText
,AccessibleText
,CaretListener
,DocumentListener
- Enclosing class:
JPasswordField
This class implements accessibility support for the
JPasswordField
class. It provides an implementation of the
Java Accessibility API appropriate to password field 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 JavaBeans
has been added to the java.beans
package.
Please see XMLEncoder
.
-
Nested Class Summary
Nested classes/interfaces declared in class javax.swing.JComponent.AccessibleJComponent
JComponent.AccessibleJComponent.AccessibleContainerHandler, JComponent.AccessibleJComponent.AccessibleFocusHandler
Nested classes/interfaces declared in class java.awt.Component.AccessibleAWTComponent
Component.AccessibleAWTComponent.AccessibleAWTComponentHandler, Component.AccessibleAWTComponent.AccessibleAWTFocusHandler
-
Field Summary
Fields declared in class javax.swing.JComponent.AccessibleJComponent
accessibleFocusHandler
Fields declared in class java.awt.Container.AccessibleAWTContainer
accessibleContainerHandler
Fields declared in class java.awt.Component.AccessibleAWTComponent
accessibleAWTComponentHandler, accessibleAWTFocusHandler
Fields declared in class javax.accessibility.AccessibleContext
ACCESSIBLE_ACTION_PROPERTY, ACCESSIBLE_ACTIVE_DESCENDANT_PROPERTY, ACCESSIBLE_CARET_PROPERTY, ACCESSIBLE_CHILD_PROPERTY, ACCESSIBLE_COMPONENT_BOUNDS_CHANGED, ACCESSIBLE_DESCRIPTION_PROPERTY, ACCESSIBLE_HYPERTEXT_OFFSET, ACCESSIBLE_INVALIDATE_CHILDREN, ACCESSIBLE_NAME_PROPERTY, ACCESSIBLE_SELECTION_PROPERTY, ACCESSIBLE_STATE_PROPERTY, ACCESSIBLE_TABLE_CAPTION_CHANGED, ACCESSIBLE_TABLE_COLUMN_DESCRIPTION_CHANGED, ACCESSIBLE_TABLE_COLUMN_HEADER_CHANGED, ACCESSIBLE_TABLE_MODEL_CHANGED, ACCESSIBLE_TABLE_ROW_DESCRIPTION_CHANGED, ACCESSIBLE_TABLE_ROW_HEADER_CHANGED, ACCESSIBLE_TABLE_SUMMARY_CHANGED, ACCESSIBLE_TEXT_ATTRIBUTES_CHANGED, ACCESSIBLE_TEXT_PROPERTY, ACCESSIBLE_VALUE_PROPERTY, ACCESSIBLE_VISIBLE_DATA_PROPERTY, accessibleDescription, accessibleName, accessibleParent
Fields declared in interface javax.accessibility.AccessibleAction
CLICK, DECREMENT, INCREMENT, TOGGLE_EXPAND, TOGGLE_POPUP
Fields declared in interface javax.accessibility.AccessibleExtendedText
ATTRIBUTE_RUN, LINE
Fields declared in interface javax.accessibility.AccessibleText
CHARACTER, SENTENCE, WORD
-
Constructor Summary
ModifierConstructorDescriptionprotected
Constructs anAccessibleJPasswordField
. -
Method Summary
Modifier and TypeMethodDescriptionGets the role of this object.Gets theAccessibleText
for theJPasswordField
.getAfterIndex
(int part, int index) Returns theString
after a givenindex
.getAtIndex
(int part, int index) Returns theString
at a givenindex
.getBeforeIndex
(int part, int index) Returns theString
before a givenindex
.getTextRange
(int startIndex, int endIndex) Returns the text between twoindices
.getTextSequenceAfter
(int part, int index) Returns theAccessibleTextSequence
after a givenindex
.getTextSequenceAt
(int part, int index) Returns theAccessibleTextSequence
at a givenindex
.getTextSequenceBefore
(int part, int index) Returns theAccessibleTextSequence
before a givenindex
.Methods declared in class javax.swing.JTextField.AccessibleJTextField
getAccessibleStateSet
Methods declared in class javax.swing.text.JTextComponent.AccessibleJTextComponent
caretUpdate, changedUpdate, cut, delete, doAccessibleAction, getAccessibleActionCount, getAccessibleActionDescription, getAccessibleEditableText, getCaretPosition, getCharacterAttribute, getCharacterBounds, getCharCount, getIndexAtPoint, getSelectedText, getSelectionEnd, getSelectionStart, getTextBounds, insertTextAtIndex, insertUpdate, paste, removeUpdate, replaceText, selectText, setAttributes, setTextContents
Methods declared in class javax.swing.JComponent.AccessibleJComponent
addPropertyChangeListener, getAccessibleChild, getAccessibleChildrenCount, getAccessibleDescription, getAccessibleKeyBinding, getAccessibleName, getBorderTitle, getTitledBorderText, getToolTipText, removePropertyChangeListener
Methods declared in class java.awt.Container.AccessibleAWTContainer
getAccessibleAt
Methods declared in class java.awt.Component.AccessibleAWTComponent
addFocusListener, contains, getAccessibleComponent, getAccessibleIndexInParent, getAccessibleParent, getBackground, getBounds, getCursor, getFont, getFontMetrics, getForeground, getLocale, getLocation, getLocationOnScreen, getSize, isEnabled, isFocusTraversable, isShowing, isVisible, removeFocusListener, requestFocus, setBackground, setBounds, setCursor, setEnabled, setFont, setForeground, setLocation, setSize, setVisible
Methods declared in class javax.accessibility.AccessibleContext
firePropertyChange, getAccessibleAction, getAccessibleIcon, getAccessibleRelationSet, getAccessibleSelection, getAccessibleTable, getAccessibleValue, setAccessibleDescription, setAccessibleName, setAccessibleParent
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods declared in interface javax.accessibility.AccessibleComponent
addFocusListener, contains, getAccessibleAt, 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 Details
-
AccessibleJPasswordField
protected AccessibleJPasswordField()Constructs anAccessibleJPasswordField
.
-
-
Method Details
-
getAccessibleRole
Gets the role of this object.- Overrides:
getAccessibleRole
in classJTextComponent.AccessibleJTextComponent
- Returns:
- an instance of AccessibleRole describing the role of the object (AccessibleRole.PASSWORD_TEXT)
- See Also:
-
getAccessibleText
Gets theAccessibleText
for theJPasswordField
. The returned object also implements theAccessibleExtendedText
interface.- Overrides:
getAccessibleText
in classJTextComponent.AccessibleJTextComponent
- Returns:
AccessibleText
for the JPasswordField- Since:
- 1.6
- See Also:
-
getAtIndex
Returns theString
at a givenindex
.- Specified by:
getAtIndex
in interfaceAccessibleText
- Overrides:
getAtIndex
in classJTextComponent.AccessibleJTextComponent
- Parameters:
part
- theCHARACTER
,WORD
orSENTENCE
to retrieveindex
- an index within the text- Returns:
- a
String
ifpart
andindex
are valid. Otherwise,null
is returned - Since:
- 1.6
- See Also:
-
getAfterIndex
Returns theString
after a givenindex
.- Specified by:
getAfterIndex
in interfaceAccessibleText
- Overrides:
getAfterIndex
in classJTextComponent.AccessibleJTextComponent
- Parameters:
part
- theCHARACTER
,WORD
orSENTENCE
to retrieveindex
- an index within the text- Returns:
- a
String
ifpart
andindex
are valid. Otherwise,null
is returned - Since:
- 1.6
- See Also:
-
getBeforeIndex
Returns theString
before a givenindex
.- Specified by:
getBeforeIndex
in interfaceAccessibleText
- Overrides:
getBeforeIndex
in classJTextComponent.AccessibleJTextComponent
- Parameters:
part
- theCHARACTER
,WORD
orSENTENCE
to retrieveindex
- an index within the text- Returns:
- a
String
ifpart
andindex
are valid. Otherwise,null
is returned - Since:
- 1.6
- See Also:
-
getTextRange
Returns the text between twoindices
.- Specified by:
getTextRange
in interfaceAccessibleEditableText
- Specified by:
getTextRange
in interfaceAccessibleExtendedText
- Overrides:
getTextRange
in classJTextComponent.AccessibleJTextComponent
- Parameters:
startIndex
- the start index in the textendIndex
- the end index in the text- Returns:
- the text string if the indices are valid.
Otherwise,
null
is returned - Since:
- 1.6
-
getTextSequenceAt
Returns theAccessibleTextSequence
at a givenindex
.- Specified by:
getTextSequenceAt
in interfaceAccessibleExtendedText
- Overrides:
getTextSequenceAt
in classJTextComponent.AccessibleJTextComponent
- Parameters:
part
- theCHARACTER
,WORD
,SENTENCE
,LINE
orATTRIBUTE_RUN
to retrieveindex
- an index within the text- Returns:
- an
AccessibleTextSequence
specifying the text ifpart
andindex
are valid. Otherwise,null
is returned - Since:
- 1.6
- See Also:
-
getTextSequenceAfter
Returns theAccessibleTextSequence
after a givenindex
.- Specified by:
getTextSequenceAfter
in interfaceAccessibleExtendedText
- Overrides:
getTextSequenceAfter
in classJTextComponent.AccessibleJTextComponent
- Parameters:
part
- theCHARACTER
,WORD
,SENTENCE
,LINE
orATTRIBUTE_RUN
to retrieveindex
- an index within the text- Returns:
- an
AccessibleTextSequence
specifying the text ifpart
andindex
are valid. Otherwise,null
is returned - Since:
- 1.6
- See Also:
-
getTextSequenceBefore
Returns theAccessibleTextSequence
before a givenindex
.- Specified by:
getTextSequenceBefore
in interfaceAccessibleExtendedText
- Overrides:
getTextSequenceBefore
in classJTextComponent.AccessibleJTextComponent
- Parameters:
part
- theCHARACTER
,WORD
,SENTENCE
,LINE
orATTRIBUTE_RUN
to retrieveindex
- an index within the text- Returns:
- an
AccessibleTextSequence
specifying the text ifpart
andindex
are valid. Otherwise,null
is returned - Since:
- 1.6
- See Also:
-