private void loadSourceOfInfoCombo() { SourceofInformationCollection collStatus = ims.core.vo.lookups.LookupHelper.getSourceofInformation(domain.getLookupService()); form.ctnDetails().cmbSourceOfInfo().clear(); for (int i = 0; i < collStatus.size(); i++) { if (!collStatus.get(i).equals(SourceofInformation.CLINICALCONTACT)) { form.ctnDetails().cmbSourceOfInfo().newRow(collStatus.get(i), collStatus.get(i).getText()); } } }