| Package | org.aswing |
| Interface | public interface ListModel |
| Subinterfaces | MutableListModel |
| Method | Defined by | ||
|---|---|---|---|
|
addListDataListener(l:ListDataListener):void
Adds a listener to the list that's notified each time a change to the data model occurs.
| ListModel | ||
|
getElementAt(index:int):*
Returns the value at the specified index.
| ListModel | ||
|
getSize():int
Returns the length of the list.
| ListModel | ||
|
Removes a listener from the list that's notified each time a change to the data model occurs.
| ListModel | ||
| addListDataListener | () | method |
public function addListDataListener(l:ListDataListener):voidAdds a listener to the list that's notified each time a change to the data model occurs.
Parametersl:ListDataListener |
| getElementAt | () | method |
public function getElementAt(index:int):*Returns the value at the specified index.
Parametersindex:int |
* |
| getSize | () | method |
public function getSize():intReturns the length of the list.
Returnsint |
| removeListDataListener | () | method |
public function removeListDataListener(l:ListDataListener):voidRemoves a listener from the list that's notified each time a change to the data model occurs.
Parametersl:ListDataListener |