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, setVisibleModifier and TypeMethodDescriptionvoidAdds the specified focus listener to receive focus events from this component.booleanChecks 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 theAccessiblechild, 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 aRectangleobject.Gets the cursor of this object.getFont()Gets the font of this object.Gets theFontMetricsof 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 aDimensionobject.booleanDetermines if the object is enabled.booleanReturns whether this object can accept focus or not.booleanDetermines if the object is showing.booleanDetermines if the object is visible.voidRemoves the specified focus listener so it no longer receives focus events from this component.voidRequests focus for this object.voidSets the background color of this object.voidSets the bounds of this object in the form of aRectangleobject.voidSets the cursor of this object.voidsetEnabled(boolean b) Sets the enabled state of the object.voidSets the font of this object.voidSets the foreground color of this object.voidsetLocation(Point p) Sets the location of the object relative to the parent.voidResizes this object so that it has width and height.voidsetVisible(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:
-