| JavaTM 2 Platform Std. Ed. v1.4.2 
 
javax.accessibility
Interface Accessible
All Known Implementing Classes: Box, Box.Filler, Button, Canvas, CellRendererPane, Checkbox, CheckboxMenuItem, Choice, HTMLEditorKit, ImageIcon, JApplet, JButton, JCheckBox, JCheckBoxMenuItem, JColorChooser, JComboBox, JDesktopPane, JDialog, JFileChooser, JFrame, JInternalFrame, JInternalFrame.JDesktopIcon, JLabel, JLayeredPane, JList, JList.AccessibleJList.AccessibleJListChild, JMenu, JMenuBar, JMenuItem, JOptionPane, JPanel, JPopupMenu, JProgressBar, JRadioButton, JRadioButtonMenuItem, JRootPane, JScrollBar, JScrollPane, JSeparator, JSlider, JSplitPane, JTabbedPane, JTable, JTable.AccessibleJTable.AccessibleJTableCell, JTableHeader, JTableHeader.AccessibleJTableHeader.AccessibleJTableHeaderEntry, JTextComponent, JToggleButton, JToolBar, JToolTip, JTree, JTree.AccessibleJTree.AccessibleJTreeNode, JViewport, JWindow, Label, List, List.AccessibleAWTList.AccessibleAWTListChild, Menu, MenuBar, MenuItem, Panel, Scrollbar, ScrollPane, TextComponent, Window 
 
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, getAccessibleContext(), which  
 returns an instance of the classAccessibleContext. 
 
 
 
 
 
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.
 
 
 Copyright 2003 Sun Microsystems, Inc. All rights reserved |