Methods Summary |
---|
public void | addElement(java.lang.Object obj)Adds an item at the end of the model. The implementation of this method
should notify all registered ListDataListener s that the
item has been added.
|
public void | insertElementAt(java.lang.Object obj, int index)Adds an item at a specific index. The implementation of this method
should notify all registered ListDataListener s that the
item has been added.
|
public void | removeElement(java.lang.Object obj)Removes an item from the model. The implementation of this method should
should notify all registered ListDataListener s that the
item has been removed.
|
public void | removeElementAt(int index)Removes an item at a specific index. The implementation of this method
should notify all registered ListDataListener s that the
item has been removed.
|