Packageorg.aswing.event
Interfacepublic interface ListDataListener
ImplementorsGridList, JList, PropertyTableModel



Public Methods
 MethodDefined by
  
Sent when the contents of the list has changed in a way that's too complex to characterize with the previous methods.
ListDataListener
  
Sent after the indices in the index0,index1 interval have been inserted in the data model.
ListDataListener
  
Sent after the indices in the index0,index1 interval have been removed from the data model.
ListDataListener
Method detail
contentsChanged()method
public function contentsChanged(e:ListDataEvent):void

Sent when the contents of the list has changed in a way that's too complex to characterize with the previous methods. For example, this is sent when an item has been replaced. Index0 and index1 bracket the change.

Parameters
e:ListDataEvent — a ListDataEvent encapsulating the event information
intervalAdded()method 
public function intervalAdded(e:ListDataEvent):void

Sent after the indices in the index0,index1 interval have been inserted in the data model. The new interval includes both index0 and index1.

Parameters
e:ListDataEvent — a ListDataEvent encapsulating the event information
intervalRemoved()method 
public function intervalRemoved(e:ListDataEvent):void

Sent after the indices in the index0,index1 interval have been removed from the data model. The interval includes both index0 and index1.

Parameters
e:ListDataEvent — a ListDataEvent encapsulating the event information