Add missing @Override annotations

Added missing @Override annotations so that if/when methods in superclasses change
there will be a compile-time error if subclasses haven't been changed accordingly.

This was done using IntelliJ IDEA's "Missing @Override annotation" inspection.
This commit is contained in:
Clayton Bodendein 2019-09-06 10:56:49 -05:00 committed by James Agnew
parent da9efaea0b
commit 08825a81d9
23 changed files with 956 additions and 889 deletions

View File

@ -87,11 +87,13 @@ public class ApacheHttpClient extends BaseHttpClient implements IHttpClient {
} }
@Override
protected IHttpRequest createHttpRequest() { protected IHttpRequest createHttpRequest() {
IHttpRequest retVal = createHttpRequest((HttpEntity)null); IHttpRequest retVal = createHttpRequest((HttpEntity)null);
return retVal; return retVal;
} }
@Override
protected IHttpRequest createHttpRequest(byte[] content) { protected IHttpRequest createHttpRequest(byte[] content) {
/* /*
* Note: Be careful about changing which constructor we use for * Note: Be careful about changing which constructor we use for
@ -109,6 +111,7 @@ public class ApacheHttpClient extends BaseHttpClient implements IHttpClient {
return result; return result;
} }
@Override
protected IHttpRequest createHttpRequest(Map<String, List<String>> theParams) { protected IHttpRequest createHttpRequest(Map<String, List<String>> theParams) {
List<NameValuePair> parameters = new ArrayList<NameValuePair>(); List<NameValuePair> parameters = new ArrayList<NameValuePair>();
for (Entry<String, List<String>> nextParam : theParams.entrySet()) { for (Entry<String, List<String>> nextParam : theParams.entrySet()) {
@ -124,6 +127,7 @@ public class ApacheHttpClient extends BaseHttpClient implements IHttpClient {
} }
@Override
protected IHttpRequest createHttpRequest(String theContents) { protected IHttpRequest createHttpRequest(String theContents) {
/* /*
* We aren't using a StringEntity here because the constructors * We aren't using a StringEntity here because the constructors

View File

@ -76,6 +76,7 @@ public class LoggingInterceptor implements IClientInterceptor {
} }
} }
@Override
@Hook(Pointcut.CLIENT_REQUEST) @Hook(Pointcut.CLIENT_REQUEST)
public void interceptRequest(IHttpRequest theRequest) { public void interceptRequest(IHttpRequest theRequest) {
if (myLogRequestSummary) { if (myLogRequestSummary) {
@ -101,6 +102,7 @@ public class LoggingInterceptor implements IClientInterceptor {
} }
} }
@Override
@Hook(Pointcut.CLIENT_RESPONSE) @Hook(Pointcut.CLIENT_RESPONSE)
public void interceptResponse(IHttpResponse theResponse) throws IOException { public void interceptResponse(IHttpResponse theResponse) throws IOException {
if (myLogResponseSummary) { if (myLogResponseSummary) {

View File

@ -35,10 +35,12 @@ public class IgPackParserDstu2 extends BaseIgPackParser<IValidationSupport> {
super(massage(theCtx)); super(massage(theCtx));
} }
@Override
protected IValidationSupport createValidationSupport(Map<IIdType, IBaseResource> theIgResources) { protected IValidationSupport createValidationSupport(Map<IIdType, IBaseResource> theIgResources) {
return new IgPackValidationSupportDstu2(theIgResources); return new IgPackValidationSupportDstu2(theIgResources);
} }
@Override
protected FhirVersionEnum provideExpectedVersion() { protected FhirVersionEnum provideExpectedVersion() {
return FhirVersionEnum.DSTU2_HL7ORG; return FhirVersionEnum.DSTU2_HL7ORG;
} }

View File

@ -37,10 +37,12 @@ public class IgPackParserDstu3 extends BaseIgPackParser<IValidationSupport> {
super(theCtx); super(theCtx);
} }
@Override
protected IValidationSupport createValidationSupport(Map<IIdType, IBaseResource> theIgResources) { protected IValidationSupport createValidationSupport(Map<IIdType, IBaseResource> theIgResources) {
return new IgPackValidationSupportDstu3(theIgResources); return new IgPackValidationSupportDstu3(theIgResources);
} }
@Override
protected FhirVersionEnum provideExpectedVersion() { protected FhirVersionEnum provideExpectedVersion() {
return FhirVersionEnum.DSTU3; return FhirVersionEnum.DSTU3;
} }

View File

@ -41,11 +41,13 @@ public class WebsocketWithCriteriaDstu2Test extends BaseResourceProviderDstu2Tes
private WebSocketClient myWebSocketClient; private WebSocketClient myWebSocketClient;
private SocketImplementation mySocketImplementation; private SocketImplementation mySocketImplementation;
@Override
@After @After
public void after() throws Exception { public void after() throws Exception {
super.after(); super.after();
} }
@Override
@Before @Before
public void before() throws Exception { public void before() throws Exception {
super.before(); super.before();

View File

@ -58,6 +58,7 @@ public class WebsocketWithSubscriptionIdDstu2Test extends BaseResourceProviderDs
@Autowired @Autowired
private SubscriptionTestUtil mySubscriptionTestUtil; private SubscriptionTestUtil mySubscriptionTestUtil;
@Override
@After @After
public void after() throws Exception { public void after() throws Exception {
super.after(); super.after();
@ -70,6 +71,7 @@ public class WebsocketWithSubscriptionIdDstu2Test extends BaseResourceProviderDs
myWebSocketClient.stop(); myWebSocketClient.stop();
} }
@Override
@Before @Before
public void before() throws Exception { public void before() throws Exception {
super.before(); super.before();

View File

@ -1021,6 +1021,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
return Utilities.appendSlash(base) + type + "/" + id; return Utilities.appendSlash(base) + type + "/" + id;
} }
@Override
public BestPracticeWarningLevel getBasePracticeWarningLevel() { public BestPracticeWarningLevel getBasePracticeWarningLevel() {
return bpWarnings; return bpWarnings;
} }
@ -1416,6 +1417,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
this.anyExtensionsAllowed = anyExtensionsAllowed; this.anyExtensionsAllowed = anyExtensionsAllowed;
} }
@Override
public void setBestPracticeWarningLevel(BestPracticeWarningLevel value) { public void setBestPracticeWarningLevel(BestPracticeWarningLevel value) {
bpWarnings = value; bpWarnings = value;
} }
@ -1429,10 +1431,12 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
this.suppressLoincSnomedMessages = suppressLoincSnomedMessages; this.suppressLoincSnomedMessages = suppressLoincSnomedMessages;
} }
@Override
public IdStatus getResourceIdRule() { public IdStatus getResourceIdRule() {
return resourceIdRule; return resourceIdRule;
} }
@Override
public void setResourceIdRule(IdStatus resourceIdRule) { public void setResourceIdRule(IdStatus resourceIdRule) {
this.resourceIdRule = resourceIdRule; this.resourceIdRule = resourceIdRule;
} }

View File

@ -35,6 +35,7 @@ public class ContainedDt extends BaseContainedDt {
@Child(name = "resource", type = IResource.class, order = 0, min = 0, max = Child.MAX_UNLIMITED) @Child(name = "resource", type = IResource.class, order = 0, min = 0, max = Child.MAX_UNLIMITED)
private List<IResource> myContainedResources; private List<IResource> myContainedResources;
@Override
public List<IResource> getContainedResources() { public List<IResource> getContainedResources() {
if (myContainedResources == null) { if (myContainedResources == null) {
myContainedResources = new ArrayList<IResource>(); myContainedResources = new ArrayList<IResource>();

View File

@ -114,6 +114,7 @@ public class NarrativeDt extends BaseNarrativeDt {
* The status of the narrative - whether it's entirely generated (from just the defined data or the extensions too), or whether a human authored it and it may contain additional data * The status of the narrative - whether it's entirely generated (from just the defined data or the extensions too), or whether a human authored it and it may contain additional data
* </p> * </p>
*/ */
@Override
public BoundCodeDt<NarrativeStatusEnum> getStatus() { public BoundCodeDt<NarrativeStatusEnum> getStatus() {
if (myStatus == null) { if (myStatus == null) {
myStatus = new BoundCodeDt<NarrativeStatusEnum>(NarrativeStatusEnum.VALUESET_BINDER); myStatus = new BoundCodeDt<NarrativeStatusEnum>(NarrativeStatusEnum.VALUESET_BINDER);
@ -170,6 +171,7 @@ public class NarrativeDt extends BaseNarrativeDt {
* The actual narrative content, a stripped down version of XHTML * The actual narrative content, a stripped down version of XHTML
* </p> * </p>
*/ */
@Override
public XhtmlDt getDiv() { public XhtmlDt getDiv() {
if (myDiv == null) { if (myDiv == null) {
myDiv = new XhtmlDt(); myDiv = new XhtmlDt();

View File

@ -162,6 +162,7 @@ public class ResourceReferenceDt
* A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources * A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
* </p> * </p>
*/ */
@Override
public IdDt getReference() { public IdDt getReference() {
if (myReference == null) { if (myReference == null) {
myReference = new IdDt(); myReference = new IdDt();
@ -183,6 +184,7 @@ public class ResourceReferenceDt
* A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources * A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
* </p> * </p>
*/ */
@Override
public ResourceReferenceDt setReference(IdDt theValue) { public ResourceReferenceDt setReference(IdDt theValue) {
myReference = theValue; myReference = theValue;
return this; return this;
@ -196,6 +198,7 @@ public class ResourceReferenceDt
* A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources * A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
* </p> * </p>
*/ */
@Override
public ResourceReferenceDt setReference(String theId) { public ResourceReferenceDt setReference(String theId) {
myReference = new IdDt(theId); myReference = new IdDt(theId);
return this; return this;
@ -240,6 +243,7 @@ public class ResourceReferenceDt
* Plain text narrative that identifies the resource in addition to the resource reference * Plain text narrative that identifies the resource in addition to the resource reference
* </p> * </p>
*/ */
@Override
public ResourceReferenceDt setDisplay(String theString) { public ResourceReferenceDt setDisplay(String theString) {
myDisplay = new StringDt(theString); myDisplay = new StringDt(theString);
return this; return this;

View File

@ -313,10 +313,12 @@ public abstract class BaseResource extends BaseElement implements IResource {
myContained = theContained; myContained = theContained;
} }
@Override
public void setId(IdDt theId) { public void setId(IdDt theId) {
myId = theId; myId = theId;
} }
@Override
public BaseResource setId(IIdType theId) { public BaseResource setId(IIdType theId) {
if (theId instanceof IdDt) { if (theId instanceof IdDt) {
myId = (IdDt) theId; myId = (IdDt) theId;
@ -328,6 +330,7 @@ public abstract class BaseResource extends BaseElement implements IResource {
return this; return this;
} }
@Override
public BaseResource setId(String theId) { public BaseResource setId(String theId) {
if (theId == null) { if (theId == null) {
myId = null; myId = null;

View File

@ -142,6 +142,7 @@ public class FhirContextDstu2Test {
final CountDownLatch allDone = new CountDownLatch(numThreads); final CountDownLatch allDone = new CountDownLatch(numThreads);
for (final Runnable submittedTestRunnable : runnables) { for (final Runnable submittedTestRunnable : runnables) {
threadPool.submit(new Runnable() { threadPool.submit(new Runnable() {
@Override
public void run() { public void run() {
allExecutorThreadsReady.countDown(); allExecutorThreadsReady.countDown();
try { try {

View File

@ -17,6 +17,7 @@ public class CustomMedicationOrderDstu2 extends MedicationOrder {
@Child(name = "medication", order = Child.REPLACE_PARENT, min = 1, max = 1, summary = false, modifier = false, type = { Medication.class }) @Child(name = "medication", order = Child.REPLACE_PARENT, min = 1, max = 1, summary = false, modifier = false, type = { Medication.class })
private ResourceReferenceDt myMedication; private ResourceReferenceDt myMedication;
@Override
public ResourceReferenceDt getMedication() { public ResourceReferenceDt getMedication() {
return myMedication; return myMedication;
} }

View File

@ -699,21 +699,25 @@ public class JsonLikeParserTest {
return super.getAsBoolean(); return super.getAsBoolean();
} }
@Override
public boolean isObject () { public boolean isObject () {
return (nativeValue != null) return (nativeValue != null)
&& ( (nativeValue instanceof Map) || Map.class.isAssignableFrom(nativeValue.getClass()) ); && ( (nativeValue instanceof Map) || Map.class.isAssignableFrom(nativeValue.getClass()) );
} }
@Override
public boolean isArray () { public boolean isArray () {
return (nativeValue != null) return (nativeValue != null)
&& ( (nativeValue instanceof List) || List.class.isAssignableFrom(nativeValue.getClass())); && ( (nativeValue instanceof List) || List.class.isAssignableFrom(nativeValue.getClass()));
} }
@Override
public boolean isString () { public boolean isString () {
return (nativeValue != null) return (nativeValue != null)
&& ( (nativeValue instanceof String) || String.class.isAssignableFrom(nativeValue.getClass())); && ( (nativeValue instanceof String) || String.class.isAssignableFrom(nativeValue.getClass()));
} }
@Override
public boolean isNumber () { public boolean isNumber () {
return (nativeValue != null) return (nativeValue != null)
&& ( (nativeValue instanceof Number) || Number.class.isAssignableFrom(nativeValue.getClass()) ); && ( (nativeValue instanceof Number) || Number.class.isAssignableFrom(nativeValue.getClass()) );
@ -724,6 +728,7 @@ public class JsonLikeParserTest {
&& ( (nativeValue instanceof Boolean) || Boolean.class.isAssignableFrom(nativeValue.getClass()) ); && ( (nativeValue instanceof Boolean) || Boolean.class.isAssignableFrom(nativeValue.getClass()) );
} }
@Override
public boolean isNull () { public boolean isNull () {
return (null == nativeValue); return (null == nativeValue);
} }

View File

@ -787,6 +787,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
return Utilities.appendSlash(base) + type + "/" + id; return Utilities.appendSlash(base) + type + "/" + id;
} }
@Override
public BestPracticeWarningLevel getBasePracticeWarningLevel() { public BestPracticeWarningLevel getBasePracticeWarningLevel() {
return bpWarnings; return bpWarnings;
} }
@ -941,10 +942,12 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
return context.fetchResource(StructureDefinition.class, "http://hl7.org/fhir/StructureDefinition/" + type); return context.fetchResource(StructureDefinition.class, "http://hl7.org/fhir/StructureDefinition/" + type);
} }
@Override
public IdStatus getResourceIdRule() { public IdStatus getResourceIdRule() {
return resourceIdRule; return resourceIdRule;
} }
@Override
public void setResourceIdRule(IdStatus resourceIdRule) { public void setResourceIdRule(IdStatus resourceIdRule) {
this.resourceIdRule = resourceIdRule; this.resourceIdRule = resourceIdRule;
} }
@ -1209,6 +1212,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
return sd.getSnapshot().getElement().get(0); return sd.getSnapshot().getElement().get(0);
} }
@Override
public void setBestPracticeWarningLevel(BestPracticeWarningLevel value) { public void setBestPracticeWarningLevel(BestPracticeWarningLevel value) {
bpWarnings = value; bpWarnings = value;
} }
@ -2071,6 +2075,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
this.typeProfile = typeProfile; this.typeProfile = typeProfile;
} }
@Override
public boolean equalsDeep(Base other) { public boolean equalsDeep(Base other) {
if (!super.equalsDeep(other) || !fhirType().equals(other.fhirType())) if (!super.equalsDeep(other) || !fhirType().equals(other.fhirType()))
return false; return false;
@ -2153,6 +2158,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
return true; return true;
} }
@Override
public boolean isPrimitive() { public boolean isPrimitive() {
String t = fhirType(); String t = fhirType();
return t.equalsIgnoreCase("boolean") || t.equalsIgnoreCase("integer") || t.equalsIgnoreCase("string") || t.equalsIgnoreCase("decimal") || t.equalsIgnoreCase("uri") || t.equalsIgnoreCase("base64Binary") || return t.equalsIgnoreCase("boolean") || t.equalsIgnoreCase("integer") || t.equalsIgnoreCase("string") || t.equalsIgnoreCase("decimal") || t.equalsIgnoreCase("uri") || t.equalsIgnoreCase("base64Binary") ||
@ -2188,6 +2194,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
return list; return list;
} }
@Override
public String primitiveValue() { public String primitiveValue() {
return wrapper.getAttribute("value"); return wrapper.getAttribute("value");
} }

View File

@ -23,6 +23,7 @@ public class ProfileValidator extends BaseValidator {
this.context = context; this.context = context;
} }
@Override
protected boolean rule(List<ValidationMessage> errors, IssueType type, String path, boolean b, String msg) { protected boolean rule(List<ValidationMessage> errors, IssueType type, String path, boolean b, String msg) {
String rn = path.contains(".") ? path.substring(0, path.indexOf(".")) : path; String rn = path.contains(".") ? path.substring(0, path.indexOf(".")) : path;
return super.rule(errors, type, path, b, msg, "<a href=\""+(rn.toLowerCase())+".html\">"+rn+"</a>: "+Utilities.escapeXml(msg)); return super.rule(errors, type, path, b, msg, "<a href=\""+(rn.toLowerCase())+".html\">"+rn+"</a>: "+Utilities.escapeXml(msg));

View File

@ -126,6 +126,7 @@ public class CodingDt
* The identification of the code system that defines the meaning of the symbol in the code. * The identification of the code system that defines the meaning of the symbol in the code.
* </p> * </p>
*/ */
@Override
public UriDt getSystemElement() { public UriDt getSystemElement() {
if (mySystem == null) { if (mySystem == null) {
mySystem = new UriDt(); mySystem = new UriDt();
@ -144,6 +145,7 @@ public class CodingDt
* The identification of the code system that defines the meaning of the symbol in the code. * The identification of the code system that defines the meaning of the symbol in the code.
* </p> * </p>
*/ */
@Override
public String getSystem() { public String getSystem() {
return getSystemElement().getValue(); return getSystemElement().getValue();
} }
@ -171,6 +173,7 @@ public class CodingDt
* The identification of the code system that defines the meaning of the symbol in the code. * The identification of the code system that defines the meaning of the symbol in the code.
* </p> * </p>
*/ */
@Override
public CodingDt setSystem(String theUri) { public CodingDt setSystem(String theUri) {
mySystem = new UriDt(theUri); mySystem = new UriDt(theUri);
return this; return this;
@ -248,6 +251,7 @@ public class CodingDt
* A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination) * A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination)
* </p> * </p>
*/ */
@Override
public CodeDt getCodeElement() { public CodeDt getCodeElement() {
if (myCode == null) { if (myCode == null) {
myCode = new CodeDt(); myCode = new CodeDt();
@ -266,6 +270,7 @@ public class CodingDt
* A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination) * A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination)
* </p> * </p>
*/ */
@Override
public String getCode() { public String getCode() {
return getCodeElement().getValue(); return getCodeElement().getValue();
} }
@ -293,6 +298,7 @@ public class CodingDt
* A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination) * A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination)
* </p> * </p>
*/ */
@Override
public CodingDt setCode(String theCode) { public CodingDt setCode(String theCode) {
myCode = new CodeDt(theCode); myCode = new CodeDt(theCode);
return this; return this;
@ -309,6 +315,7 @@ public class CodingDt
* A representation of the meaning of the code in the system, following the rules of the system * A representation of the meaning of the code in the system, following the rules of the system
* </p> * </p>
*/ */
@Override
public StringDt getDisplayElement() { public StringDt getDisplayElement() {
if (myDisplay == null) { if (myDisplay == null) {
myDisplay = new StringDt(); myDisplay = new StringDt();
@ -327,6 +334,7 @@ public class CodingDt
* A representation of the meaning of the code in the system, following the rules of the system * A representation of the meaning of the code in the system, following the rules of the system
* </p> * </p>
*/ */
@Override
public String getDisplay() { public String getDisplay() {
return getDisplayElement().getValue(); return getDisplayElement().getValue();
} }
@ -354,6 +362,7 @@ public class CodingDt
* A representation of the meaning of the code in the system, following the rules of the system * A representation of the meaning of the code in the system, following the rules of the system
* </p> * </p>
*/ */
@Override
public CodingDt setDisplay(String theString) { public CodingDt setDisplay(String theString) {
myDisplay = new StringDt(theString); myDisplay = new StringDt(theString);
return this; return this;

View File

@ -104,6 +104,7 @@ public class NarrativeDt extends BaseNarrativeDt {
* The actual narrative content, a stripped down version of XHTML * The actual narrative content, a stripped down version of XHTML
* </p> * </p>
*/ */
@Override
public XhtmlDt getDiv() { public XhtmlDt getDiv() {
if (myDiv == null) { if (myDiv == null) {
myDiv = new XhtmlDt(); myDiv = new XhtmlDt();

View File

@ -193,6 +193,7 @@ public class QuantityDt
* The value of the measured amount. The value includes an implicit precision in the presentation of the value * The value of the measured amount. The value includes an implicit precision in the presentation of the value
* </p> * </p>
*/ */
@Override
public DecimalDt getValueElement() { public DecimalDt getValueElement() {
if (myValue == null) { if (myValue == null) {
myValue = new DecimalDt(); myValue = new DecimalDt();
@ -264,6 +265,7 @@ public class QuantityDt
* The value of the measured amount. The value includes an implicit precision in the presentation of the value * The value of the measured amount. The value includes an implicit precision in the presentation of the value
* </p> * </p>
*/ */
@Override
public QuantityDt setValue(java.math.BigDecimal theValue) { public QuantityDt setValue(java.math.BigDecimal theValue) {
myValue = new DecimalDt(theValue); myValue = new DecimalDt(theValue);
return this; return this;
@ -280,6 +282,7 @@ public class QuantityDt
* How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues; e.g. if the comparator is \&quot;&lt;\&quot; , then the real value is &lt; stated value * How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues; e.g. if the comparator is \&quot;&lt;\&quot; , then the real value is &lt; stated value
* </p> * </p>
*/ */
@Override
public BoundCodeDt<QuantityComparatorEnum> getComparatorElement() { public BoundCodeDt<QuantityComparatorEnum> getComparatorElement() {
if (myComparator == null) { if (myComparator == null) {
myComparator = new BoundCodeDt<QuantityComparatorEnum>(QuantityComparatorEnum.VALUESET_BINDER); myComparator = new BoundCodeDt<QuantityComparatorEnum>(QuantityComparatorEnum.VALUESET_BINDER);
@ -406,6 +409,7 @@ public class QuantityDt
* The identification of the system that provides the coded form of the unit * The identification of the system that provides the coded form of the unit
* </p> * </p>
*/ */
@Override
public UriDt getSystemElement() { public UriDt getSystemElement() {
if (mySystem == null) { if (mySystem == null) {
mySystem = new UriDt(); mySystem = new UriDt();
@ -451,6 +455,7 @@ public class QuantityDt
* The identification of the system that provides the coded form of the unit * The identification of the system that provides the coded form of the unit
* </p> * </p>
*/ */
@Override
public QuantityDt setSystem(String theUri) { public QuantityDt setSystem(String theUri) {
mySystem = new UriDt(theUri); mySystem = new UriDt(theUri);
return this; return this;
@ -467,6 +472,7 @@ public class QuantityDt
* A computer processable form of the unit in some unit representation system * A computer processable form of the unit in some unit representation system
* </p> * </p>
*/ */
@Override
public CodeDt getCodeElement() { public CodeDt getCodeElement() {
if (myCode == null) { if (myCode == null) {
myCode = new CodeDt(); myCode = new CodeDt();
@ -512,6 +518,7 @@ public class QuantityDt
* A computer processable form of the unit in some unit representation system * A computer processable form of the unit in some unit representation system
* </p> * </p>
*/ */
@Override
public QuantityDt setCode(String theCode) { public QuantityDt setCode(String theCode) {
myCode = new CodeDt(theCode); myCode = new CodeDt(theCode);
return this; return this;

View File

@ -162,6 +162,7 @@ public class ResourceReferenceDt
* A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources * A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
* </p> * </p>
*/ */
@Override
public IdDt getReference() { public IdDt getReference() {
if (myReference == null) { if (myReference == null) {
myReference = new IdDt(); myReference = new IdDt();
@ -183,6 +184,7 @@ public class ResourceReferenceDt
* A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources * A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
* </p> * </p>
*/ */
@Override
public ResourceReferenceDt setReference(IdDt theValue) { public ResourceReferenceDt setReference(IdDt theValue) {
myReference = theValue; myReference = theValue;
return this; return this;
@ -196,6 +198,7 @@ public class ResourceReferenceDt
* A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources * A reference to a location at which the other resource is found. The reference may a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources
* </p> * </p>
*/ */
@Override
public ResourceReferenceDt setReference(String theId) { public ResourceReferenceDt setReference(String theId) {
myReference = new IdDt(theId); myReference = new IdDt(theId);
return this; return this;
@ -240,6 +243,7 @@ public class ResourceReferenceDt
* Plain text narrative that identifies the resource in addition to the resource reference * Plain text narrative that identifies the resource in addition to the resource reference
* </p> * </p>
*/ */
@Override
public ResourceReferenceDt setDisplay(String theString) { public ResourceReferenceDt setDisplay(String theString) {
myDisplay = new StringDt(theString); myDisplay = new StringDt(theString);
return this; return this;

View File

@ -59,6 +59,7 @@ public class ResourceBlock extends Child {
return getClassName(); return getClassName();
} }
@Override
public boolean isBlock() { public boolean isBlock() {
return true; return true;
} }

View File

@ -116,6 +116,7 @@ public class XMLUtils {
impl = getDOMImpl(); impl = getDOMImpl();
} }
@Override
public LSInput resolveResource(String type, String namespaceURI, String publicId, String systemId, public LSInput resolveResource(String type, String namespaceURI, String publicId, String systemId,
String baseURI) { String baseURI) {
LSInput lsInput = impl.createLSInput(); LSInput lsInput = impl.createLSInput();

View File

@ -24,6 +24,7 @@ package org.hl7.fhir.dstu2.model;
public interface IIdType extends IBase { public interface IIdType extends IBase {
@Override
boolean isEmpty(); boolean isEmpty();
/** /**