Interface AccessibleExtendedComponent
- All Superinterfaces:
AccessibleComponent
- All Known Implementing Classes:
AbstractButton.AccessibleAbstractButton, JButton.AccessibleJButton, JCheckBox.AccessibleJCheckBox, JCheckBoxMenuItem.AccessibleJCheckBoxMenuItem, JColorChooser.AccessibleJColorChooser, JComboBox.AccessibleJComboBox, JComponent.AccessibleJComponent, JDesktopPane.AccessibleJDesktopPane, JEditorPane.AccessibleJEditorPane, JEditorPane.AccessibleJEditorPaneHTML, JEditorPane.JEditorPaneAccessibleHypertextSupport, JFileChooser.AccessibleJFileChooser, JInternalFrame.AccessibleJInternalFrame, JInternalFrame.JDesktopIcon.AccessibleJDesktopIcon, JLabel.AccessibleJLabel, JLayeredPane.AccessibleJLayeredPane, JList.AccessibleJList, JMenu.AccessibleJMenu, JMenuBar.AccessibleJMenuBar, JMenuItem.AccessibleJMenuItem, JOptionPane.AccessibleJOptionPane, JPanel.AccessibleJPanel, JPasswordField.AccessibleJPasswordField, JPopupMenu.AccessibleJPopupMenu, JProgressBar.AccessibleJProgressBar, JRadioButton.AccessibleJRadioButton, JRadioButtonMenuItem.AccessibleJRadioButtonMenuItem, JRootPane.AccessibleJRootPane, JScrollBar.AccessibleJScrollBar, JScrollPane.AccessibleJScrollPane, JSeparator.AccessibleJSeparator, JSlider.AccessibleJSlider, JSpinner.AccessibleJSpinner, JSplitPane.AccessibleJSplitPane, JTabbedPane.AccessibleJTabbedPane, JTable.AccessibleJTable, JTableHeader.AccessibleJTableHeader, JTextArea.AccessibleJTextArea, JTextComponent.AccessibleJTextComponent, JTextField.AccessibleJTextField, JToggleButton.AccessibleJToggleButton, JToolBar.AccessibleJToolBar, JToolTip.AccessibleJToolTip, JTree.AccessibleJTree, JViewport.AccessibleJViewport
The
AccessibleExtendedComponent
interface should be supported by any
object that is rendered on the screen. This interface provides the standard
mechanism for an assistive technology to determine the extended graphical
representation of an object. Applications can determine if an object supports
the AccessibleExtendedComponent
interface by first obtaining its
AccessibleContext
and then calling the
AccessibleContext.getAccessibleComponent()
method. If the return value
is not null
and the type of the return value is
AccessibleExtendedComponent
, the object supports this interface.- Since:
- 1.4
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns key bindings associated with this object.Returns the titled border text.Returns the tool tip text.Methods declared in interface 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
Modifier and TypeMethodDescriptionvoid
Adds the specified focus listener to receive focus events from this component.boolean
Checks whether the specified point is within this object's bounds, where the point's x and y coordinates are defined to be relative to the coordinate system of the object.Returns theAccessible
child, if one exists, contained at the local coordinatePoint
.Gets the background color of this object.Gets the bounds of this object in the form of aRectangle
object.Gets the cursor of this object.getFont()
Gets the font of this object.Gets theFontMetrics
of this object.Gets the foreground color of this object.Gets the location of the object relative to the parent in the form of a point specifying the object's top-left corner in the screen's coordinate space.Returns the location of the object on the screen.getSize()
Returns the size of this object in the form of aDimension
object.boolean
Determines if the object is enabled.boolean
Returns whether this object can accept focus or not.boolean
Determines if the object is showing.boolean
Determines if the object is visible.void
Removes the specified focus listener so it no longer receives focus events from this component.void
Requests focus for this object.void
Sets the background color of this object.void
Sets the bounds of this object in the form of aRectangle
object.void
Sets the cursor of this object.void
setEnabled
(boolean b) Sets the enabled state of the object.void
Sets the font of this object.void
Sets the foreground color of this object.void
setLocation
(Point p) Sets the location of the object relative to the parent.void
Resizes this object so that it has width and height.void
setVisible
(boolean b) Sets the visible state of the object.
-
Method Details
-
getToolTipText
String getToolTipText()Returns the tool tip text.- Returns:
- the tool tip text, if supported, of the object; otherwise,
null
-
getTitledBorderText
String getTitledBorderText()Returns the titled border text.- Returns:
- the titled border text, if supported, of the object; otherwise,
null
-
getAccessibleKeyBinding
AccessibleKeyBinding getAccessibleKeyBinding()Returns key bindings associated with this object.- Returns:
- the key bindings, if supported, of the object; otherwise,
null
- See Also:
-