public class DefaultTableModel
extends Object
GDK enhancements for DefaultTableModel.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public Iterator<?> |
iterator()Returns an Iterator which traverses the DefaultTableModel one item at a time. |
|
public DefaultTableModel |
leftShift(Object row)Overloads the left shift operator to provide an easy way to add rows to a DefaultTableModel. |
|
public void |
putAt(int index, Object row)Allow DefaultTableModel 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 |
Returns an Iterator which traverses the DefaultTableModel one item at a time.
Overloads the left shift operator to provide an easy way to add rows to a DefaultTableModel.
if row.size < model.size -> row will be padded with nulls
if row.size > model.size -> additional columns will be discarded
row - a row to be added to the model.Allow DefaultTableModel to work with subscript operators.
WARNING: this operation does not replace the item at the specified index, rather it inserts the item at that index, thus increasing the size of the model by 1.
if row.size < model.size -> row will be padded with nulls
if row.size > model.size -> additional columns will be discarded
index - an indexrow - the row to insert at the given index