java.lang.Object | |||||
↳ | javax.accessibility.AccessibleContext | ||||
↳ | java.awt.Component.AccessibleAWTComponent | ||||
↳ | java.awt.Container.AccessibleAWTContainer | ||||
↳ | javax.swing.JComponent.AccessibleJComponent | ||||
↳ | javax.swing.JList.AccessibleJList |
This class implements accessibility support for the
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 XMLEncoder
.
Nested Classes | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
JList.AccessibleJList.AccessibleJListChild | This class implements accessibility support appropriate for list children. |
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Adds the specified selected item in the object to the object's
selection.
| |||||||||||
Clears the selection in the object, so that nothing in the
object is selected.
| |||||||||||
List Data Listener contents changed method.
| |||||||||||
Returns the
Accessible child contained at
the local coordinate Point , if one exists. | |||||||||||
Return the nth Accessible child of the object.
| |||||||||||
Returns the number of accessible children in the object.
| |||||||||||
Get the role of this object.
| |||||||||||
Returns an Accessible representing the specified selected item
in the object.
| |||||||||||
Get the AccessibleSelection associated with this object.
| |||||||||||
Returns the number of items currently selected.
| |||||||||||
Get the state set of this object.
| |||||||||||
List Data Listener interval added method.
| |||||||||||
List Data Listener interval removed method.
| |||||||||||
Returns true if the current child of this object is selected.
| |||||||||||
Property Change Listener change method.
| |||||||||||
Removes the specified selected item in the object from the object's
selection.
| |||||||||||
Causes every selected item in the object to be selected
if the object supports multiple selections.
| |||||||||||
List Selection Listener value change method.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
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.
i | the zero-based index of selectable items |
---|
Clears the selection in the object, so that nothing in the object is selected.
List Data Listener contents changed method. Used to fire the visible data property change
e | ListDataEvent |
---|
Returns the Accessible
child contained at
the local coordinate Point
, if one exists.
Otherwise returns null
.
p | the point defining the top-left corner of the
Accessible , given in the coordinate space
of the object's parent |
---|
Accessible
at the specified
location, if it exists
Return the nth Accessible child of the object.
i | zero-based index of child |
---|
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.
Get the role of this object.
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
.
i | the zero-based index of selected items |
---|
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.
Returns the number of items currently selected. If no items are selected, the return value will be 0.
Get the state set of this object.
List Data Listener interval added method. Used to fire the visible data property change
e | ListDataEvent |
---|
List Data Listener interval removed method. Used to fire the visible data property change
e | ListDataEvent |
---|
Returns true if the current child of this object is selected.
i | the zero-based index of the child in this Accessible object. |
---|
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.
e | PropertyChangeEvent |
---|
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.
i | the zero-based index of selectable items |
---|
Causes every selected item in the object to be selected if the object supports multiple selections.
List Selection Listener value change method. Used to fire the property change
e | ListSelectionEvent |
---|