/** * Populates the Hierarchy tree with the contents of the * PatientHandlingMovementVoCollection Selects the item that matches the * current SOAP clinical contact Sets that items background colour to * LightYellow and expands that node. * * @param voCollPatientHandlingMovement */ private void populateParentRows(PatientHandlingMovementVoCollection voCollPatientHandlingMovement) { if (voCollPatientHandlingMovement == null || voCollPatientHandlingMovement.size() <= 0) return; for (int i = 0; i < voCollPatientHandlingMovement.size(); i++) { populateParentRow(voCollPatientHandlingMovement.get(i)); } }