interface org.aswing.MutableListModel extends ListModel

MutableListMode is a MVC pattern's mode for List UI, different List UI can connected to a same mode to view the mode's data. When the mode's data changed the mode should fire a event to all its ListDataListeners. @author bill

Instance Fields

Show inherited public instance fieldsHide inherited public instance fields

Inherited from ListModel

function addListDataListener(l:ListDataListener):Void
function getElementAt(index:Int):Dynamic
function getSize():Int
function removeListDataListener(l:ListDataListener):Void

function insertElementAt(item:Dynamic, index:Int): Void

Inserts a element at specified position.

function removeElementAt(index:Int): Void

Removes a element from a specified position.