| Package | org.aswing.event |
| Interface | public interface ListDataListener |
| Implementors | GridList, JList, PropertyTableModel |
| Method | Defined by | ||
|---|---|---|---|
|
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.
| ListDataListener | ||
|
intervalAdded(e:ListDataEvent):void
Sent after the indices in the index0,index1
interval have been inserted in the data model.
| ListDataListener | ||
|
intervalRemoved(e:ListDataEvent):void
Sent after the indices in the index0,index1 interval
have been removed from the data model.
| ListDataListener | ||
| contentsChanged | () | method |
public function contentsChanged(e:ListDataEvent):voidSent 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.
Parameterse:ListDataEvent — a ListDataEvent encapsulating the
event information
|
| intervalAdded | () | method |
public function intervalAdded(e:ListDataEvent):voidSent after the indices in the index0,index1 interval have been inserted in the data model. The new interval includes both index0 and index1.
Parameterse:ListDataEvent — a ListDataEvent encapsulating the
event information
|
| intervalRemoved | () | method |
public function intervalRemoved(e:ListDataEvent):voidSent after the indices in the index0,index1 interval have been removed from the data model. The interval includes both index0 and index1.
Parameterse:ListDataEvent — a ListDataEvent encapsulating the
event information
|