Two model fixes
This commit is contained in:
parent
daa58aea8f
commit
7c81ebce56
|
@ -52,14 +52,12 @@ package org.hl7.fhir.r5.model;
|
|||
*/
|
||||
|
||||
|
||||
import org.hl7.fhir.instance.model.api.IBaseIntegerDatatype;
|
||||
|
||||
import ca.uhn.fhir.model.api.annotation.DatatypeDef;
|
||||
|
||||
/**
|
||||
* Primitive type "integer" in FHIR: A signed 32-bit integer
|
||||
*/
|
||||
@DatatypeDef(name = "integer")
|
||||
@DatatypeDef(name = "integer64")
|
||||
public class Integer64Type extends PrimitiveType<Long> /* implements IBaseInteger64Datatype */ {
|
||||
|
||||
private static final long serialVersionUID = 3L;
|
||||
|
|
|
@ -209,7 +209,7 @@ public class Narrative extends BaseNarrative implements INarrative {
|
|||
/**
|
||||
* The actual narrative content, a stripped down version of XHTML.
|
||||
*/
|
||||
@Child(name = "div", type = {XhtmlType.class}, order=1, min=1, max=1, modifier=false, summary=false)
|
||||
@Child(name = "div", type = {XhtmlNode.class}, order=1, min=1, max=1, modifier=false, summary=false)
|
||||
@Description(shortDefinition="Limited xhtml content", formalDefinition="The actual narrative content, a stripped down version of XHTML." )
|
||||
protected XhtmlNode div;
|
||||
|
||||
|
|
Loading…
Reference in New Issue