This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.accessibility
interface Accessible

All Known Implementing Classes:
Box, Box.Filler, Button, Canvas, CellRendererPane, Checkbox, CheckboxMenuItem, Choice, HTMLEditorKit, ImageIcon, JApplet, JButton, BasicArrowButton, MetalComboBoxButton, MetalScrollButton, JCheckBox, JCheckBoxMenuItem, JColorChooser, JComboBox, JDesktopPane, JDialog, JFileChooser, JFrame, JInternalFrame, JInternalFrame.JDesktopIcon, JLabel, BasicComboBoxRenderer, DefaultListCellRenderer, DefaultTableCellRenderer, DefaultTreeCellRenderer, BasicComboBoxRenderer.UIResource, DefaultListCellRenderer.UIResource, MetalFileChooserUI.FileRenderer, MetalFileChooserUI.FilterComboBoxRenderer, DefaultTableCellRenderer.UIResource, JLayeredPane, JList, JList.AccessibleJList.AccessibleJListChild, JMenu, JMenuBar, BasicInternalFrameTitlePane.SystemMenuBar, JMenuItem, JRadioButtonMenuItem, JOptionPane, JPanel, AbstractColorChooserPanel, JSpinner.DefaultEditor, JSpinner.DateEditor, JSpinner.ListEditor, JSpinner.NumberEditor, JPopupMenu, BasicComboPopup, MetalComboBoxUI.MetalComboPopup, JProgressBar, JRadioButton, JRadioButtonMenuItem, JRootPane, JScrollBar, JScrollPane.ScrollBar, JScrollPane, JSeparator, JPopupMenu.Separator, JToolBar.Separator, JSlider, JSpinner, JSplitPane, JTabbedPane, JTable, JTable.AccessibleJTable.AccessibleJTableCell, JTableHeader, JTableHeader.AccessibleJTableHeader.AccessibleJTableHeaderEntry, JTextComponent, JEditorPane, JTextArea, JTextField, JTextPane, DefaultTreeCellEditor.DefaultTextField, JFormattedTextField, JPasswordField, JToggleButton, JToolBar, JToolTip, JTree, JTree.AccessibleJTree.AccessibleJTreeNode, JViewport, JWindow, Label, List, List.AccessibleAWTList.AccessibleAWTListChild, Menu, PopupMenu, MenuBar, MenuItem, Panel, Applet, ProgressMonitor, Scrollbar, ScrollPane, TextComponent, TextArea, TextField, Window, BasicToolBarUI.DragWindow, Dialog, Frame, FileDialog

public 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, {@link #getAccessibleContext}, which returns an instance of the class {@link AccessibleContext}.


Method Summary
 AccessibleContext

          Returns the AccessibleContext associated with this object.
 

Method Detail

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.



This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.