// Clear Table
setRowCount(0);
//
for (int i = 0; i < pos.length; i++)
{
PO myPO = pos[i];
int row = getRowCount();
setRowCount(row+1);
for (int col = 0; col < m_layout.length; col++)
{
String columnName = m_layout[col].getColSQL();
Object data = myPO.get_Value(columnName);
if (data != null)
{
Class<?> c = m_layout[col].getColClass();
if (c == IDColumn.class)
data = new IDColumn(((Integer)data).intValue());