}
}
@Override
public void setValueAt(Object aValue, int rowIndex, int columnIndex) {
DirectoryCountryItem item = country.getItems().get(rowIndex);
try {
if (columnIndex == 0) {
item.setTitle((String) aValue);
} else if (columnIndex == 1) {
item.setCode((String) aValue);
}
} catch (ClipsException ex) {
MessageBox.showException(ex);
}
}