List<String> newOptions = null;
if ("double".equalsIgnoreCase(field) || "int".equalsIgnoreCase(field)) {
newOptions = Arrays.asList(numericOperators);
} else if ("boolean".equalsIgnoreCase(field)) {
newOptions = Arrays.asList(booleanOperators);
CustomEditTextCell etc = (CustomEditTextCell)cellTable.getColumn(1).getCell();
etc.setEnabled(false);
((Button)selectedTable.getWidget(0, 3)).setEnabled(characteristicsAttrMap.get(selectedTable).getList().size() != 2);
if (newAttribute != null) {
newAttribute.setValue("N/A");
}
} else if ("String".equalsIgnoreCase(field)) {