GenClient.showError("Failed to get subType");
return;
}
String subType = listBox_Subtype.getValue(idx);
ArrayList<String> otherList = Classification.getOtherList(program, type, subType);
listBox_Other.clear();
for (String item : otherList) {
listBox_Other.addItem(item);
}
listBox_Other.setItemSelected(0, true);
listBox_Other.setEnabled(otherList.size() > 1);