Added Caution Note extension

This commit is contained in:
t37622uhn 2014-03-25 11:16:55 -04:00
parent cb19b17e59
commit e4e0afc622
1 changed files with 30 additions and 3 deletions

View File

@ -124,6 +124,7 @@ import ca.uhn.fhir.model.primitive.IntegerDt;
import ca.uhn.fhir.model.primitive.OidDt;
import ca.uhn.fhir.model.primitive.StringDt;
import ca.uhn.fhir.model.primitive.UriDt;
import com.sun.org.apache.bcel.internal.classfile.Code;
/**
@ -423,11 +424,18 @@ public class Patient extends BaseResource implements IResource {
formalDefinition="Whether this patient record is in active use"
)
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
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
@ -437,7 +445,7 @@ public class Patient extends BaseResource implements IResource {
@Override
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);
}
/**
@ -1121,6 +1129,25 @@ public class Patient extends BaseResource implements IResource {
myActive = new BooleanDt(theBoolean);
}
/**
* 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)
@ -1694,7 +1721,7 @@ public class Patient extends BaseResource implements IResource {
getType().setValueAsEnum(theValue);
}
}