public interface IVectorTableModel
extends javax.swing.table.TableModel
TableModel
that allows put and get all data in Vector
format.
The data type of each position depends on the concreteTableModel
,
but typically is a object array (one by column).
The vector is assigned vy reference (copy is not made).
Modifier and Type | Method and Description |
---|---|
java.util.Vector |
getVector()
Vector with data contained in model.
|
void |
setVector(java.util.Vector vector)
Set vector with model data.
|