/** * moveData * * @param curRow Old row for the data * @param newRow New row for the data */ private void moveData(int curRow, int newRow) { int lastRow = rowData.size() - 1; if (curRow >= 0 && curRow <= lastRow && newRow >= 0 && newRow <= lastRow) { Object[] curData = (Object[]) rowData.elementAt(curRow); rowData.removeElementAt(curRow); rowData.insertElementAt(curData, newRow); fireTableDataChanged(); } }
public void add(SkeletonProperty prop, int row) { m_props.insertElementAt(prop, row); fireTableRowsInserted(row, row); fireTableStructureChanged(); }