public int getColumnCount() {
return TABLECOLUMNS.length;
}
public Object getValueAt(int rowIndex, int columnIndex) {
AlternateFreeRegexItem item = getItems().get(rowIndex);
switch (columnIndex) {
case TABLECOLUMN_MATCHEXPRESSION:
return item.matchExpression;
case TABLECOLUMN_REPLACEEXPRESSION:
return item.replaceExpression;