Home » openjdk-7 » java » awt » [javadoc | source]
java.awt
protected class: List.AccessibleAWTList [javadoc | source]
java.lang.Object
   AccessibleAWTComponent
      java.awt.List$AccessibleAWTList

All Implemented Interfaces:
    ActionListener, ItemListener, AccessibleSelection

This class implements accessibility support for the List class. It provides an implementation of the Java Accessibility API appropriate to list user-interface elements.
Nested Class Summary:
protected class  AccessibleAWTList.AccessibleAWTListChild  This class implements accessibility support for List children. It provides an implementation of the Java Accessibility API appropriate to list children user-interface elements. 
Constructor:
 public AccessibleAWTList() 
Method from java.awt.List$AccessibleAWTList Summary:
actionPerformed,   addAccessibleSelection,   clearAccessibleSelection,   getAccessibleAt,   getAccessibleChild,   getAccessibleChildrenCount,   getAccessibleRole,   getAccessibleSelection,   getAccessibleSelection,   getAccessibleSelectionCount,   getAccessibleStateSet,   isAccessibleChildSelected,   itemStateChanged,   removeAccessibleSelection,   selectAllAccessibleSelection
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from java.awt.List$AccessibleAWTList Detail:
 public  void actionPerformed(ActionEvent event) 
 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 Accessible getAccessibleAt(Point p) 
    Returns the Accessible child contained at the local coordinate Point, if one exists.
 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 boolean isAccessibleChildSelected(int i) 
    Returns true if the current child of this object is selected.
 public  void itemStateChanged(ItemEvent event) 
 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.