Home » openjdk-7 » javax » swing » [javadoc | source]
javax.swing
protected class: JList.AccessibleJList [javadoc | source]
java.lang.Object
   AccessibleJComponent
      javax.swing.JList$AccessibleJList

All Implemented Interfaces:
    ListDataListener, PropertyChangeListener, AccessibleSelection, ListSelectionListener

This class implements accessibility support for the {@code JList} class. It provides an implementation of the Java Accessibility API appropriate to list user-interface elements.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeansTM has been added to the java.beans package. Please see java.beans.XMLEncoder .
Nested Class Summary:
protected class  AccessibleJList.AccessibleJListChild  This class implements accessibility support appropriate for list children. 
Field Summary
 int leadSelectionIndex     
Constructor:
 public AccessibleJList() 
Method from javax.swing.JList$AccessibleJList Summary:
addAccessibleSelection,   clearAccessibleSelection,   contentsChanged,   getAccessibleAt,   getAccessibleChild,   getAccessibleChildrenCount,   getAccessibleRole,   getAccessibleSelection,   getAccessibleSelection,   getAccessibleSelectionCount,   getAccessibleStateSet,   intervalAdded,   intervalRemoved,   isAccessibleChildSelected,   propertyChange,   removeAccessibleSelection,   selectAllAccessibleSelection,   valueChanged
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from javax.swing.JList$AccessibleJList Detail:
 public  void addAccessibleSelection(int i) 
    Adds the specified selected item in the object to the object's selection. If the object supports multiple selections, the specified item is added to any existing selection, otherwise it replaces any existing selection in the object. If the specified item is already selected, this method has no effect.
 public  void clearAccessibleSelection() 
    Clears the selection in the object, so that nothing in the object is selected.
 public  void contentsChanged(ListDataEvent e) 
    List Data Listener contents changed method. Used to fire the visible data property change
 public Accessible getAccessibleAt(Point p) 
    Returns the Accessible child contained at the local coordinate Point, if one exists. Otherwise returns null.
 public Accessible getAccessibleChild(int i) 
    Return the nth Accessible child of the object.
 public int getAccessibleChildrenCount() 
    Returns the number of accessible children in the object. If all of the children of this object implement Accessible, than this method should return the number of children of this object.
 public AccessibleRole getAccessibleRole() 
    Get the role of this object.
 public AccessibleSelection getAccessibleSelection() 
    Get the AccessibleSelection associated with this object. In the implementation of the Java Accessibility API for this class, return this object, which is responsible for implementing the AccessibleSelection interface on behalf of itself.
 public Accessible getAccessibleSelection(int i) 
    Returns an Accessible representing the specified selected item in the object. If there isn't a selection, or there are fewer items selected than the integer passed in, the return value will be null.
 public int getAccessibleSelectionCount() 
    Returns the number of items currently selected. If no items are selected, the return value will be 0.
 public AccessibleStateSet getAccessibleStateSet() 
    Get the state set of this object.
 public  void intervalAdded(ListDataEvent e) 
    List Data Listener interval added method. Used to fire the visible data property change
 public  void intervalRemoved(ListDataEvent e) 
    List Data Listener interval removed method. Used to fire the visible data property change
 public boolean isAccessibleChildSelected(int i) 
    Returns true if the current child of this object is selected.
 public  void propertyChange(PropertyChangeEvent e) 
    Property Change Listener change method. Used to track changes to the DataModel and ListSelectionModel, in order to re-set listeners to those for reporting changes there via the Accessibility PropertyChange mechanism.
 public  void removeAccessibleSelection(int i) 
    Removes the specified selected item in the object from the object's selection. If the specified item isn't currently selected, this method has no effect.
 public  void selectAllAccessibleSelection() 
    Causes every selected item in the object to be selected if the object supports multiple selections.
 public  void valueChanged(ListSelectionEvent e) 
    List Selection Listener value change method. Used to fire the property change