private String getNacs(GpToPracticesForSummaryOverviewVo gp) { if (gp == null) return null; if (!gp.getGpIsNotNull()) return null; if (!gp.getGp().getCodeMappingsIsNotNull()) return null; for (int i = 0 ; i < gp.getGp().getCodeMappings().size() ; i++) { if (gp.getGp().getCodeMappings().get(i).getTaxonomyName().getID() == TaxonomyType.NAT_GP_CODE.getID()) { return gp.getGp().getCodeMappings().get(i).getTaxonomyCode(); } } return null; }
private void populateGPInfo(GpToPracticesForSummaryOverviewVo gp) { if (gp == null) return; form.txtGp().setValue(gp.getGpIsNotNull()&&gp.getGp().getNameIsNotNull()?gp.getGp().getName().toString():null); form.txtPractice().setValue(gp.getPracticeIsNotNull()?gp.getPractice().getName():null); form.txtTel().setValue(getTelephone(gp.getGp())); form.txtNacs().setValue(getNacs(gp)); }