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 SummaryNested classes/interfaces declared in class javax.swing.JComponent.AccessibleJComponentJComponent.AccessibleJComponent.AccessibleContainerHandler, JComponent.AccessibleJComponent.AccessibleFocusHandlerNested classes/interfaces declared in class java.awt.Component.AccessibleAWTComponentComponent.AccessibleAWTComponent.AccessibleAWTComponentHandler, Component.AccessibleAWTComponent.AccessibleAWTFocusHandler
- 
Field SummaryFields declared in class javax.swing.JComponent.AccessibleJComponentaccessibleFocusHandlerFields declared in class java.awt.Container.AccessibleAWTContaineraccessibleContainerHandlerFields declared in class java.awt.Component.AccessibleAWTComponentaccessibleAWTComponentHandler, accessibleAWTFocusHandlerFields declared in class javax.accessibility.AccessibleContextACCESSIBLE_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, accessibleParentFields declared in interface javax.accessibility.AccessibleActionCLICK, DECREMENT, INCREMENT, TOGGLE_EXPAND, TOGGLE_POPUPFields declared in interface javax.accessibility.AccessibleExtendedTextATTRIBUTE_RUN, LINEFields declared in interface javax.accessibility.AccessibleTextCHARACTER, SENTENCE, WORD
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedConstructs anAccessibleJPasswordField.
- 
Method SummaryModifier and TypeMethodDescriptionGets the role of this object.Gets theAccessibleTextfor theJPasswordField.getAfterIndex(int part, int index) Returns theStringafter a givenindex.getAtIndex(int part, int index) Returns theStringat a givenindex.getBeforeIndex(int part, int index) Returns theStringbefore a givenindex.getTextRange(int startIndex, int endIndex) Returns the text between twoindices.getTextSequenceAfter(int part, int index) Returns theAccessibleTextSequenceafter a givenindex.getTextSequenceAt(int part, int index) Returns theAccessibleTextSequenceat a givenindex.getTextSequenceBefore(int part, int index) Returns theAccessibleTextSequencebefore a givenindex.Methods declared in class javax.swing.JTextField.AccessibleJTextFieldgetAccessibleStateSetMethods declared in class javax.swing.text.JTextComponent.AccessibleJTextComponentcaretUpdate, changedUpdate, cut, delete, doAccessibleAction, getAccessibleActionCount, getAccessibleActionDescription, getAccessibleEditableText, getCaretPosition, getCharacterAttribute, getCharacterBounds, getCharCount, getIndexAtPoint, getSelectedText, getSelectionEnd, getSelectionStart, getTextBounds, insertTextAtIndex, insertUpdate, paste, removeUpdate, replaceText, selectText, setAttributes, setTextContentsMethods declared in class javax.swing.JComponent.AccessibleJComponentaddPropertyChangeListener, getAccessibleChild, getAccessibleChildrenCount, getAccessibleDescription, getAccessibleKeyBinding, getAccessibleName, getBorderTitle, getTitledBorderText, getToolTipText, removePropertyChangeListenerMethods declared in class java.awt.Container.AccessibleAWTContainergetAccessibleAtMethods declared in class java.awt.Component.AccessibleAWTComponentaddFocusListener, 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, setVisibleMethods declared in class javax.accessibility.AccessibleContextfirePropertyChange, getAccessibleAction, getAccessibleIcon, getAccessibleRelationSet, getAccessibleSelection, getAccessibleTable, getAccessibleValue, setAccessibleDescription, setAccessibleName, setAccessibleParentMethods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface javax.accessibility.AccessibleComponentaddFocusListener, 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- 
AccessibleJPasswordFieldprotected AccessibleJPasswordField()Constructs anAccessibleJPasswordField.
 
- 
- 
Method Details- 
getAccessibleRoleGets the role of this object.- Overrides:
- getAccessibleRolein class- JTextComponent.AccessibleJTextComponent
- Returns:
- an instance of AccessibleRole describing the role of the object (AccessibleRole.PASSWORD_TEXT)
- See Also:
 
- 
getAccessibleTextGets theAccessibleTextfor theJPasswordField. The returned object also implements theAccessibleExtendedTextinterface.- Overrides:
- getAccessibleTextin class- JTextComponent.AccessibleJTextComponent
- Returns:
- AccessibleTextfor the JPasswordField
- Since:
- 1.6
- See Also:
 
- 
getAtIndexReturns theStringat a givenindex.- Specified by:
- getAtIndexin interface- AccessibleText
- Overrides:
- getAtIndexin class- JTextComponent.AccessibleJTextComponent
- Parameters:
- part- the- CHARACTER,- WORDor- SENTENCEto retrieve
- index- an index within the text
- Returns:
- a Stringifpartandindexare valid. Otherwise,nullis returned
- Since:
- 1.6
- See Also:
 
- 
getAfterIndexReturns theStringafter a givenindex.- Specified by:
- getAfterIndexin interface- AccessibleText
- Overrides:
- getAfterIndexin class- JTextComponent.AccessibleJTextComponent
- Parameters:
- part- the- CHARACTER,- WORDor- SENTENCEto retrieve
- index- an index within the text
- Returns:
- a Stringifpartandindexare valid. Otherwise,nullis returned
- Since:
- 1.6
- See Also:
 
- 
getBeforeIndexReturns theStringbefore a givenindex.- Specified by:
- getBeforeIndexin interface- AccessibleText
- Overrides:
- getBeforeIndexin class- JTextComponent.AccessibleJTextComponent
- Parameters:
- part- the- CHARACTER,- WORDor- SENTENCEto retrieve
- index- an index within the text
- Returns:
- a Stringifpartandindexare valid. Otherwise,nullis returned
- Since:
- 1.6
- See Also:
 
- 
getTextRangeReturns the text between twoindices.- Specified by:
- getTextRangein interface- AccessibleEditableText
- Specified by:
- getTextRangein interface- AccessibleExtendedText
- Overrides:
- getTextRangein class- JTextComponent.AccessibleJTextComponent
- Parameters:
- startIndex- the start index in the text
- endIndex- the end index in the text
- Returns:
- the text string if the indices are valid.
 Otherwise, nullis returned
- Since:
- 1.6
 
- 
getTextSequenceAtReturns theAccessibleTextSequenceat a givenindex.- Specified by:
- getTextSequenceAtin interface- AccessibleExtendedText
- Overrides:
- getTextSequenceAtin class- JTextComponent.AccessibleJTextComponent
- Parameters:
- part- the- CHARACTER,- WORD,- SENTENCE,- LINEor- ATTRIBUTE_RUNto retrieve
- index- an index within the text
- Returns:
- an AccessibleTextSequencespecifying the text ifpartandindexare valid. Otherwise,nullis returned
- Since:
- 1.6
- See Also:
 
- 
getTextSequenceAfterReturns theAccessibleTextSequenceafter a givenindex.- Specified by:
- getTextSequenceAfterin interface- AccessibleExtendedText
- Overrides:
- getTextSequenceAfterin class- JTextComponent.AccessibleJTextComponent
- Parameters:
- part- the- CHARACTER,- WORD,- SENTENCE,- LINEor- ATTRIBUTE_RUNto retrieve
- index- an index within the text
- Returns:
- an AccessibleTextSequencespecifying the text ifpartandindexare valid. Otherwise,nullis returned
- Since:
- 1.6
- See Also:
 
- 
getTextSequenceBeforeReturns theAccessibleTextSequencebefore a givenindex.- Specified by:
- getTextSequenceBeforein interface- AccessibleExtendedText
- Overrides:
- getTextSequenceBeforein class- JTextComponent.AccessibleJTextComponent
- Parameters:
- part- the- CHARACTER,- WORD,- SENTENCE,- LINEor- ATTRIBUTE_RUNto retrieve
- index- an index within the text
- Returns:
- an AccessibleTextSequencespecifying the text ifpartandindexare valid. Otherwise,nullis returned
- Since:
- 1.6
- See Also:
 
 
-