com.sun.java.accessibility
Interface Accessible
- All Known Implementing Classes:
- JLayeredPane, JFrame, JToggleButton, JMenuItem, JCheckBoxMenuItem, JMenu, JToolBar, JSeparator, JWindow, CellRendererPane, JButton, JTable, JTable.AccessibleJTable.AccessibleJTableCell, JTree, JTree.AccessibleJTree.AccessibleJTreeNode, JPanel, JDialog, JScrollPane, JScrollBar, JRadioButtonMenuItem, JCheckBox, JTextComponent, JOptionPane, JLabel, JDesktopPane, JPopupMenu, JSlider, JMenuBar, JColorChooser, JTabbedPane, JViewport, JInternalFrame, JInternalFrame.JDesktopIcon, JApplet, JRootPane, JProgressBar, JRadioButton, JFileChooser, Box, Box.Filler, JToolTip, JList, JList.AccessibleJList.AccessibleJListChild, JComboBox, JSplitPane, JTableHeader, JTableHeader.AccessibleJTableHeader.AccessibleJTableHeaderEntry
- public abstract interface Accessible
Interface Accessible is the main interface for the accessibility package.
All components that support
the accessibility package must implement this interface.
It contains a single method, getAccessibleContext(), which
returns an instance of the class AccessibleContext.
getAccessibleContext
public AccessibleContext getAccessibleContext()
- Returns the AccessibleContext associated with this object. In most
cases, the return value should not be null if the object implements
interface Accessible. If a component developer creates a subclass
of an object that implements Accessible, and that subclass
is not Accessible, the developer should override the
getAccessibleContext method to return null.
Submit a bug or feature
Submit comments/suggestions about new javadoc look
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.