Java Platform 1.2
Beta 4

Uses of Interface
com.sun.java.accessibility.Accessible

Packages that use Accessible
com.sun.java.accessibility   
com.sun.java.swing Provides a set of "lightweight" (all-Java
com.sun.java.swing.plaf Provides one interface and many abstract classes that Swing uses to provide its pluggable look-and-feel capabilities.  
com.sun.java.swing.table Provides classes and interfaces for dealing with java.awt.swing. 
com.sun.java.swing.text Provides classes and interfaces that deal with editable and noneditable text components.  
com.sun.java.swing.tree Provides classes and interfaces for dealing with java.awt.swing. 
 

Uses of Accessible in com.sun.java.accessibility
 

Fields in com.sun.java.accessibility declared as Accessible
protected  Accessible AccessibleContext.accessibleParent
          The accessible parent of this object.
 

Methods in com.sun.java.accessibility that return Accessible
 Accessible AccessibleContext.getAccessibleParent()
          Get the Accessible parent of this object.
abstract  Accessible AccessibleContext.getAccessibleChild(int i)
          Return the specified Accessible child of the object.
 Accessible AccessibleSelection.getAccessibleSelection(int i)
          Returns an Accessible representing the specified selected child in the object.
 Accessible AccessibleComponent.getAccessibleAt(Point p)
          Returns the Accessible child, if one exists, contained at the local coordinate Point.
 

Methods in com.sun.java.accessibility with parameters of type Accessible
 void AccessibleContext.setAccessibleParent(Accessible a)
          Set the Accessible parent of this object.
 

Uses of Accessible in com.sun.java.swing
 

Classes in com.sun.java.swing that implement Accessible
  Box
          A lightweight container that uses a BoxLayout object as its layout manager.
  CellRendererPane
          This class is inserted in between cell renderers and the components that use them.
  DefaultListCellRenderer
          Renders an item in a list.
static  DefaultListCellRenderer.UIResource
          A subclass of DefaultListCellRenderer that implements UIResource.
  JApplet
          An extended version of java.applet.
  JButton
          An implementation of a "push" button.
  JCheckBox
          An implementation of a CheckBox -- an item that can be selected or deselected, and which displays its state to the user.
  JCheckBoxMenuItem
          A menu item that can be selected or deselected.
  JColorChooser
          JColorChooser provides a pane of controls designed to allow a user to manipulate and select a color.
  JComboBox
          Swing's implementation of a ComboBox -- a combination of a text field and drop-down list that lets the user either type in a value or select it from a list that is displayed when the user asks for it.
  JDesktopPane
          A container used to create a multiple-document interface or a virtual desktop.
  JDialog
          The main class for creating a dialog window.
  JEditorPane
          A text pane to edit various kinds of content, such as html and rtf.
  JFileChooser
          JFileChooser provides a simple mechanism for the user to chooser a file.
  JFrame
          An extended version of java.awt.
  JInternalFrame
          A lightweight object that provides many of the features of a native frame, including dragging, closing, becoming an icon, resizing, title display, and support for a menu bar.
static  JInternalFrame.JDesktopIcon
          This component represents an iconified version of a JInternalFrame.
  JLabel
          A display area for a short text string or an image, or both.
  JLayeredPane
          JLayeredPane adds depth to a JFC/Swing container, allowing components to overlap each other when needed.
  JList
          A component that allows the user to select one or more objects from a list.
protected   JList.AccessibleJList.AccessibleJListChild
           
  JMenu
          An implementation of a menu -- a popup window containing JMenuItems that is displayed when the user selects an item on the JMenuBar.
  JMenuBar
          An implementation of a MenuBar.
  JMenuItem
          An implementation of a MenuItem.
  JOptionPane
          JOptionPane makes it easy to pop up a standard dialog box that prompts users for a value or informs them of something.
  JPanel
          JPanel is a generic lightweight container.
  JPasswordField
          JPasswordField is a lightweight component that allows the editing of a single line of text where the view indicates something was typed, but does not show the original characters.
  JPopupMenu
          An implementation of a Popup Menu -- a small window which pops up and displays a series of choices.
static  JPopupMenu.Separator
          A popupmenu-specific separator.
  JProgressBar
          A component that displays an integer value within a bounded interval.
  JRadioButton
          An implementation of a radio button -- an item that can be selected or deselected, and which displays its state to the user.
  JRadioButtonMenuItem
          An implementation of a RadioButtonMenuItem.
  JRootPane
          The fundamental component in the container hierarchy.
  JScrollBar
          An implementation of a scrollbar.
  JScrollPane
          A specialized container that manages a viewport, optional vertical and horizontal scrollbars, and optional row and column heading viewports.
protected   JScrollPane.ScrollBar
          By default JScrollPane creates scrollbars that are instances of this class.
  JSeparator
          An implementation of a Menu Separator -- a divider between menu items that breaks them up into logical groupings.
  JSlider
          A component that lets the user graphically select a value by slding a knob within a bounded interval.
  JSplitPane
          JSplitPane is used to divide two (and only two) Components.
  JTabbedPane
          A component which lets the user switch between a group of components by clicking on a tab with a given title and/or icon.
  JTable
          JTable is a user-interface component that presents data in a two-dimensional table format.
protected   JTable.AccessibleJTable.AccessibleJTableCell
          The class used to obtain the AccessibleRole for a cell.
  JTextArea
          A TextArea is a multi-line area that displays plain text.
  JTextField
          JTextField is a lightweight component that allows the editing of a single line of text.
  JTextPane
          A text component that can be marked up with attributes that are represented graphically.
  JToggleButton
          An implementation of a two-state button.
  JToolBar
          JToolBar provides a component which is useful for displaying commonly used Actions or controls.
static  JToolBar.Separator
          A toolbar-specific separator.
  JToolTip
          Used to display a "Tip" for a Component.
  JTree
          A control that displays a set of hierarchical data as an outline.
protected   JTree.AccessibleJTree.AccessibleJTreeNode
           
  JViewport
          The "viewport" or "porthole" through which you see the underlying information.
  JWindow
          A JWindow is a container that can be displayed anywhere on the user's desktop.
 

Methods in com.sun.java.swing that return Accessible
 Accessible JComponent.AccessibleJComponent.getAccessibleParent()
          Get the Accessible parent of this object.
 Accessible JComponent.AccessibleJComponent.getAccessibleChild(int i)
          Return the nth Accessible child of the object.
 Accessible JComponent.AccessibleJComponent.getAccessibleAt(Point p)
          Returns the Accessible child, if one exists, contained at the local coordinate Point.
 Accessible JFrame.AccessibleJFrame.getAccessibleParent()
          Get the Accessible parent of this object.
 Accessible JFrame.AccessibleJFrame.getAccessibleChild(int i)
          Return the nth Accessible child of the object.
 Accessible JFrame.AccessibleJFrame.getAccessibleAt(Point p)
          Returns the Accessible child, if one exists, contained at the local coordinate Point.
static Accessible SwingUtilities.getAccessibleAt(Component c, Point p)
          Returns the Accessible child contained at the local coordinate Point, if one exists.
static Accessible SwingUtilities.getAccessibleChild(Component c, int i)
          Return the nth Accessible child of the object.
 Accessible JMenu.AccessibleJMenu.getAccessibleChild(int i)
          Return the nth Accessible child of the object.
 Accessible JMenu.AccessibleJMenu.getAccessibleSelection(int i)
          Returns the currently selected sub-menu if one is selected, otherwise null (there can only be one selection, and it can only be a sub-menu, as otherwise menu items don't remain selected).
 Accessible JWindow.AccessibleJWindow.getAccessibleParent()
          Get the Accessible parent of this object.
 Accessible JWindow.AccessibleJWindow.getAccessibleChild(int i)
          Return the nth Accessible child of the object.
 Accessible JWindow.AccessibleJWindow.getAccessibleAt(Point p)
          Returns the Accessible child, if one exists, contained at the local coordinate Point.
 Accessible CellRendererPane.AccessibleCellRendererPane.getAccessibleParent()
          Get the Accessible parent of this object.
 Accessible CellRendererPane.AccessibleCellRendererPane.getAccessibleChild(int i)
          Return the nth Accessible child of the object.
 Accessible CellRendererPane.AccessibleCellRendererPane.getAccessibleAt(Point p)
          Returns the Accessible child, if one exists, contained at the local coordinate Point.
 Accessible JTable.AccessibleJTable.getAccessibleAt(Point p)
          Returns the Accessible child, if one exists, contained at the local coordinate Point.
 Accessible JTable.AccessibleJTable.getAccessibleChild(int i)
          Return the nth Accessible child of the object.
 Accessible JTable.AccessibleJTable.AccessibleJTableCell.getAccessibleParent()
          Get the Accessible parent of this object.
 Accessible JTable.AccessibleJTable.AccessibleJTableCell.getAccessibleChild(int i)
          Return the specified Accessible child of the object.
 Accessible JTable.AccessibleJTable.AccessibleJTableCell.getAccessibleAt(Point p)
           
 Accessible JTree.AccessibleJTree.getAccessibleAt(Point p)
          Returns the Accessible child, if one exists, contained at the local coordinate Point.
 Accessible JTree.AccessibleJTree.getAccessibleChild(int i)
          Return the nth Accessible child of the object.
 Accessible JTree.AccessibleJTree.getAccessibleSelection(int i)
          Returns an Accessible representing the specified selected item in the object.
 Accessible JTree.AccessibleJTree.AccessibleJTreeNode.getAccessibleParent()
          Get the Accessible parent of this object.
 Accessible JTree.AccessibleJTree.AccessibleJTreeNode.getAccessibleChild(int i)
          Return the specified Accessible child of the object.
 Accessible JTree.AccessibleJTree.AccessibleJTreeNode.getAccessibleAt(Point p)
           
 Accessible JTree.AccessibleJTree.AccessibleJTreeNode.getAccessibleSelection(int i)
          Returns an Accessible representing the specified selected item in the object.
 Accessible JDialog.AccessibleJDialog.getAccessibleParent()
          Get the Accessible parent of this object.
 Accessible JDialog.AccessibleJDialog.getAccessibleChild(int i)
          Return the nth Accessible child of the object.
 Accessible JDialog.AccessibleJDialog.getAccessibleAt(Point p)
          Returns the Accessible child, if one exists, contained at the local coordinate Point.
 Accessible JMenuBar.AccessibleJMenuBar.getAccessibleSelection(int i)
          Returns the currently selected menu if one is selected, otherwise null.
 Accessible JTabbedPane.AccessibleJTabbedPane.getAccessibleChild(int i)
          Return the specified Accessible child of the object.
 Accessible JTabbedPane.AccessibleJTabbedPane.getAccessibleAt(Point p)
           
 Accessible JTabbedPane.AccessibleJTabbedPane.getAccessibleSelection(int i)
           
 Accessible JApplet.AccessibleJApplet.getAccessibleParent()
          Get the Accessible parent of this object.
 Accessible JApplet.AccessibleJApplet.getAccessibleChild(int i)
          Return the nth Accessible child of the object.
 Accessible JApplet.AccessibleJApplet.getAccessibleAt(Point p)
          Returns the Accessible child, if one exists, contained at the local coordinate Point.
 Accessible Box.Filler.AccessibleBoxFiller.getAccessibleParent()
          Get the Accessible parent of this object.
 Accessible Box.Filler.AccessibleBoxFiller.getAccessibleChild(int i)
          Returns the nth Accessible child of the object.
 Accessible Box.Filler.AccessibleBoxFiller.getAccessibleAt(Point p)
          Returns the Accessible child, if one exists, contained at the local coordinate Point.
 Accessible Box.AccessibleBox.getAccessibleParent()
          Gets the Accessible parent of this object.
 Accessible Box.AccessibleBox.getAccessibleChild(int i)
          Return the nth Accessible child of the object.
 Accessible Box.AccessibleBox.getAccessibleAt(Point p)
          Returns the Accessible child, if one exists, contained at the local coordinate Point.
 Accessible JList.AccessibleJList.getAccessibleAt(Point p)
          Returns the Accessible child contained at the local coordinate Point, if one exists.
 Accessible JList.AccessibleJList.getAccessibleChild(int i)
          Return the nth Accessible child of the object.
 Accessible JList.AccessibleJList.getAccessibleSelection(int i)
          Returns an Accessible representing the specified selected item in the object.
 Accessible JList.AccessibleJList.AccessibleJListChild.getAccessibleChild(int i)
           
 Accessible JList.AccessibleJList.AccessibleJListChild.getAccessibleAt(Point p)
           
 

Constructors in com.sun.java.swing with parameters of type Accessible
JTree.AccessibleJTree.AccessibleJTreeNode.JTree.AccessibleJTree.AccessibleJTreeNode(JTree t, TreePath p, Accessible ap)
          Constructs an AccessibleJTreeNode
 

Uses of Accessible in com.sun.java.swing.plaf
 

Methods in com.sun.java.swing.plaf that return Accessible
 Accessible ComponentUI.getAccessibleChild(JComponent c, int i)
          Return the nth Accessible child of the object.
 

Uses of Accessible in com.sun.java.swing.table
 

Classes in com.sun.java.swing.table that implement Accessible
  DefaultTableCellRenderer
          The standard class for rendering (displaying) individual cells in a JTable.
static  DefaultTableCellRenderer.UIResource
          A subclass of DefaultTableCellRenderer that implements UIResource.
  JTableHeader
          This is the column header part of a JTable.
protected   JTableHeader.AccessibleJTableHeader.AccessibleJTableHeaderEntry
           
 

Methods in com.sun.java.swing.table that return Accessible
 Accessible JTableHeader.AccessibleJTableHeader.getAccessibleAt(Point p)
          Returns the Accessible child, if one exists, contained at the local coordinate Point.
 Accessible JTableHeader.AccessibleJTableHeader.getAccessibleChild(int i)
          Return the nth Accessible child of the object.
 Accessible JTableHeader.AccessibleJTableHeader.AccessibleJTableHeaderEntry.getAccessibleChild(int i)
           
 Accessible JTableHeader.AccessibleJTableHeader.AccessibleJTableHeaderEntry.getAccessibleAt(Point p)
           
 

Uses of Accessible in com.sun.java.swing.text
 

Classes in com.sun.java.swing.text that implement Accessible
  JTextComponent
          JTextComponent is the base class for swing text components.
 

Uses of Accessible in com.sun.java.swing.tree
 

Classes in com.sun.java.swing.tree that implement Accessible
  DefaultTreeCellEditor.DefaultTextField
          TextField used when no editor is supplied.
  DefaultTreeCellRenderer
          Displays an entry in a tree.
 


Java Platform 1.2
Beta 4

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.
This documentation was generated with a post-Beta4 version of Javadoc.