/** * Create the ValueObject collection to hold the set of DomainObjects. * * @param map - maps DomainObjects to created ValueObjects * @param domainObjectSet - Set of ims.medical.domain.objects.NeuRootMotorFind objects. */ public static ims.generalmedical.vo.NeuroMotorRootValueVoCollection createNeuroMotorRootValueVoCollectionFromNeuRootMotorFind( DomainObjectMap map, java.util.Set domainObjectSet) { ims.generalmedical.vo.NeuroMotorRootValueVoCollection voList = new ims.generalmedical.vo.NeuroMotorRootValueVoCollection(); if (null == domainObjectSet) { return voList; } int rieCount = 0; int activeCount = 0; java.util.Iterator iterator = domainObjectSet.iterator(); while (iterator.hasNext()) { ims.medical.domain.objects.NeuRootMotorFind domainObject = (ims.medical.domain.objects.NeuRootMotorFind) iterator.next(); ims.generalmedical.vo.NeuroMotorRootValueVo vo = create(map, domainObject); if (vo != null) voList.add(vo); if (domainObject != null) { if (domainObject.getIsRIE() != null && domainObject.getIsRIE().booleanValue() == true) rieCount++; else activeCount++; } } voList.setRieCount(rieCount); voList.setActiveCount(activeCount); return voList; }
/** * Create the ValueObject collection to hold the list of DomainObjects. * * @param map - maps DomainObjects to created ValueObjects * @param domainObjectList - List of ims.medical.domain.objects.NeuRootMotorFind objects. */ public static ims.generalmedical.vo.NeuroMotorRootValueVoCollection createNeuroMotorRootValueVoCollectionFromNeuRootMotorFind( DomainObjectMap map, java.util.List domainObjectList) { ims.generalmedical.vo.NeuroMotorRootValueVoCollection voList = new ims.generalmedical.vo.NeuroMotorRootValueVoCollection(); if (null == domainObjectList) { return voList; } int rieCount = 0; int activeCount = 0; for (int i = 0; i < domainObjectList.size(); i++) { ims.medical.domain.objects.NeuRootMotorFind domainObject = (ims.medical.domain.objects.NeuRootMotorFind) domainObjectList.get(i); ims.generalmedical.vo.NeuroMotorRootValueVo vo = create(map, domainObject); if (vo != null) voList.add(vo); if (domainObject != null) { if (domainObject.getIsRIE() != null && domainObject.getIsRIE().booleanValue() == true) rieCount++; else activeCount++; } } voList.setRieCount(rieCount); voList.setActiveCount(activeCount); return voList; }
public static ims.medical.domain.objects.NeuRootMotorFind extractNeuRootMotorFind( ims.domain.ILightweightDomainFactory domainFactory, ims.generalmedical.vo.NeuroMotorRootValueVo valueObject, HashMap domMap) { if (null == valueObject) { return null; } Integer id = valueObject.getID_NeuRootMotorFind(); ims.medical.domain.objects.NeuRootMotorFind domainObject = null; if (null == id) { if (domMap.get(valueObject) != null) { return (ims.medical.domain.objects.NeuRootMotorFind) domMap.get(valueObject); } // ims.generalmedical.vo.NeuroMotorRootValueVo ID_NeuRootMotorFind field is unknown domainObject = new ims.medical.domain.objects.NeuRootMotorFind(); domMap.put(valueObject, domainObject); } else { String key = (valueObject.getClass().getName() + "__" + valueObject.getID_NeuRootMotorFind()); if (domMap.get(key) != null) { return (ims.medical.domain.objects.NeuRootMotorFind) domMap.get(key); } domainObject = (ims.medical.domain.objects.NeuRootMotorFind) domainFactory.getDomainObject(ims.medical.domain.objects.NeuRootMotorFind.class, id); // TODO: Not sure how this should be handled. Effectively it must be a staleobject exception, // but maybe should be handled as that further up. if (domainObject == null) return null; domMap.put(key, domainObject); } domainObject.setVersion(valueObject.getVersion_NeuRootMotorFind()); // SaveAsRefVO - treated as a refVo in extract methods ims.core.clinical.domain.objects.VertebralLevels value1 = null; if (null != valueObject.getRootValue()) { if (valueObject.getRootValue().getBoId() == null) { if (domMap.get(valueObject.getRootValue()) != null) { value1 = (ims.core.clinical.domain.objects.VertebralLevels) domMap.get(valueObject.getRootValue()); } } else { value1 = (ims.core.clinical.domain.objects.VertebralLevels) domainFactory.getDomainObject( ims.core.clinical.domain.objects.VertebralLevels.class, valueObject.getRootValue().getBoId()); } } domainObject.setRootValue(value1); domainObject.setRightFinding(valueObject.getRightFinding()); domainObject.setLeftFinding(valueObject.getLeftFinding()); return domainObject; }
/** * Create the ValueObject from the ims.medical.domain.objects.NeuRootMotorFind object. * * @param map DomainObjectMap of DomainObjects to already created ValueObjects. * @param domainObject */ public static ims.generalmedical.vo.NeuroMotorRootValueVo create( DomainObjectMap map, ims.medical.domain.objects.NeuRootMotorFind domainObject) { if (null == domainObject) { return null; } // check if the domainObject already has a valueObject created for it ims.generalmedical.vo.NeuroMotorRootValueVo valueObject = (ims.generalmedical.vo.NeuroMotorRootValueVo) map.getValueObject(domainObject, ims.generalmedical.vo.NeuroMotorRootValueVo.class); if (null == valueObject) { valueObject = new ims.generalmedical.vo.NeuroMotorRootValueVo( domainObject.getId(), domainObject.getVersion()); map.addValueObject(domainObject, valueObject); valueObject = insert(map, valueObject, domainObject); } return valueObject; }
/** * Update the ValueObject with the Domain Object. * * @param map DomainObjectMap of DomainObjects to already created ValueObjects. * @param valueObject to be updated * @param domainObject ims.medical.domain.objects.NeuRootMotorFind */ public static ims.generalmedical.vo.NeuroMotorRootValueVo insert( DomainObjectMap map, ims.generalmedical.vo.NeuroMotorRootValueVo valueObject, ims.medical.domain.objects.NeuRootMotorFind domainObject) { if (null == domainObject) { return valueObject; } if (null == map) { map = new DomainObjectMap(); } valueObject.setID_NeuRootMotorFind(domainObject.getId()); valueObject.setIsRIE(domainObject.getIsRIE()); // If this is a recordedInError record, and the domainObject // value isIncludeRecord has not been set, then we return null and // not the value object if (valueObject.getIsRIE() != null && valueObject.getIsRIE().booleanValue() == true && !domainObject.isIncludeRecord()) return null; // If this is not a recordedInError record, and the domainObject // value isIncludeRecord has been set, then we return null and // not the value object if ((valueObject.getIsRIE() == null || valueObject.getIsRIE().booleanValue() == false) && domainObject.isIncludeRecord()) return null; // RootValue valueObject.setRootValue( ims.core.vo.domain.VertebrallevelVoAssembler.create(map, domainObject.getRootValue())); // rightFinding valueObject.setRightFinding(domainObject.getRightFinding()); // leftFinding valueObject.setLeftFinding(domainObject.getLeftFinding()); return valueObject; }