@Override public int getRowCount() { return datas.length; } @Override public int getColumnCount() { return colNames.length; } @Override public Object getValueAt( int rowIndex, int columnIndex ) { return datas[ rowIndex][ columnIndex ]; }