public class DefaultListModel
extends Object
GDK enhancements for DefaultListModel.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public void |
clear()Removes all elements from the DefaultListModel. |
|
public Iterator<?> |
iterator()Returns an Iterator which traverses the DefaultListModel one element at a time. |
|
public DefaultListModel<?> |
leftShift(Object e)Overloads the left shift operator to provide an easy way to add elements to a DefaultListModel. |
|
public void |
putAt(int index, Object e)Allow DefaultListModel to work with subscript operators. |
| Methods inherited from class | Name |
|---|---|
class Object |
addShutdownHook, any, any, asBoolean, asType, collect, collect, collect, dump, each, eachMatch, eachMatch, eachWithIndex, every, every, find, find, findAll, findAll, findIndexOf, findIndexOf, findIndexValues, findIndexValues, findLastIndexOf, findLastIndexOf, findResult, findResult, findResult, findResult, getAt, getMetaClass, getMetaPropertyValues, getProperties, grep, grep, hasProperty, identity, inject, inject, inspect, invokeMethod, is, isCase, isNotCase, iterator, metaClass, print, print, printf, printf, println, println, println, putAt, respondsTo, respondsTo, setMetaClass, sleep, sleep, split, sprintf, sprintf, stream, tap, toString, use, use, use, with, with, withCloseable, withCloseable, withMethodClosure, withStream, withStream, withTraits |
Removes all elements from the DefaultListModel.
Returns an Iterator which traverses the DefaultListModel one element at a time.
Overloads the left shift operator to provide an easy way to add elements to a DefaultListModel.
e - an element to be added to the listModel.Allow DefaultListModel to work with subscript operators.
WARNING: this operation does not replace the element at the specified index, rather it inserts the element at that index, thus increasing the size of the model by 1.
index - an indexe - the element to insert at the given index