Added Caution Note extension as a list of StringDt
This commit is contained in:
parent
19184bbb58
commit
fe387b564b
|
@ -42,12 +42,7 @@ import ca.uhn.fhir.model.dstu.valueset.AdministrativeGenderCodesEnum;
|
||||||
import ca.uhn.fhir.model.dstu.valueset.AnimalSpeciesEnum;
|
import ca.uhn.fhir.model.dstu.valueset.AnimalSpeciesEnum;
|
||||||
import ca.uhn.fhir.model.dstu.valueset.LinkTypeEnum;
|
import ca.uhn.fhir.model.dstu.valueset.LinkTypeEnum;
|
||||||
import ca.uhn.fhir.model.dstu.valueset.MaritalStatusCodesEnum;
|
import ca.uhn.fhir.model.dstu.valueset.MaritalStatusCodesEnum;
|
||||||
import ca.uhn.fhir.model.primitive.BooleanDt;
|
import ca.uhn.fhir.model.primitive.*;
|
||||||
import ca.uhn.fhir.model.primitive.BoundCodeDt;
|
|
||||||
import ca.uhn.fhir.model.primitive.BoundCodeableConceptDt;
|
|
||||||
import ca.uhn.fhir.model.primitive.CodeDt;
|
|
||||||
import ca.uhn.fhir.model.primitive.DateTimeDt;
|
|
||||||
import ca.uhn.fhir.model.primitive.IntegerDt;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -348,10 +343,16 @@ public class Patient extends BaseResource implements IResource {
|
||||||
)
|
)
|
||||||
private BooleanDt myActive;
|
private BooleanDt myActive;
|
||||||
|
|
||||||
|
@Child(name="cautionNote", type=StringDt.class, order=17, min=0, max=Child.MAX_UNLIMITED)
|
||||||
|
@Description(
|
||||||
|
shortDefinition = "Complete caution note",
|
||||||
|
formalDefinition = "List of substances that may elicit a response from the patient."
|
||||||
|
)
|
||||||
|
private List<StringDt> myCautionNote;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isEmpty() {
|
public boolean isEmpty() {
|
||||||
return super.isBaseEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty( myIdentifier, myName, myTelecom, myGender, myBirthDate, myDeceased, myAddress, myMaritalStatus, myMultipleBirth, myPhoto, myContact, myAnimal, myCommunication, myCareProvider, myManagingOrganization, myLink, myActive);
|
return super.isBaseEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty( myIdentifier, myName, myTelecom, myGender, myBirthDate, myDeceased, myAddress, myMaritalStatus, myMultipleBirth, myPhoto, myContact, myAnimal, myCommunication, myCareProvider, myManagingOrganization, myLink, myActive, myCautionNote);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -361,7 +362,7 @@ public class Patient extends BaseResource implements IResource {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public <T extends IElement> List<T> getAllPopulatedChildElementsOfType(Class<T> theType) {
|
public <T extends IElement> List<T> getAllPopulatedChildElementsOfType(Class<T> theType) {
|
||||||
return ca.uhn.fhir.util.ElementUtil.allPopulatedChildElements(theType, myIdentifier, myName, myTelecom, myGender, myBirthDate, myDeceased, myAddress, myMaritalStatus, myMultipleBirth, myPhoto, myContact, myAnimal, myCommunication, myCareProvider, myManagingOrganization, myLink, myActive);
|
return ca.uhn.fhir.util.ElementUtil.allPopulatedChildElements(theType, myIdentifier, myName, myTelecom, myGender, myBirthDate, myDeceased, myAddress, myMaritalStatus, myMultipleBirth, myPhoto, myContact, myAnimal, myCommunication, myCareProvider, myManagingOrganization, myLink, myActive, myCautionNote);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1191,6 +1192,26 @@ public class Patient extends BaseResource implements IResource {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the complete caution note (a list of substances and the responses a patient elicits)
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* <b>Definition:</b>
|
||||||
|
* Complete caution note
|
||||||
|
* </p>
|
||||||
|
*/
|
||||||
|
public List<StringDt> getCautionNote(){ return myCautionNote; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the value for the caution note
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* <b>Definition:</b>
|
||||||
|
* Complete caution note
|
||||||
|
* </p>
|
||||||
|
*/
|
||||||
|
public void setMyCautionNote(List<StringDt> theValue){ myCautionNote = theValue; }
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Block class for child element: <b>Patient.contact</b> (A contact party (e.g. guardian, partner, friend) for the patient)
|
* Block class for child element: <b>Patient.contact</b> (A contact party (e.g. guardian, partner, friend) for the patient)
|
||||||
|
|
Loading…
Reference in New Issue