remove Encounter Renderer
This commit is contained in:
parent
e521b9f750
commit
6e10d7d595
|
@ -1,32 +0,0 @@
|
||||||
package org.hl7.fhir.r5.renderers;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
|
|
||||||
import org.hl7.fhir.exceptions.DefinitionException;
|
|
||||||
import org.hl7.fhir.exceptions.FHIRException;
|
|
||||||
import org.hl7.fhir.exceptions.FHIRFormatError;
|
|
||||||
import org.hl7.fhir.r5.renderers.utils.RenderingContext;
|
|
||||||
import org.hl7.fhir.r5.renderers.utils.ResourceWrapper;
|
|
||||||
import org.hl7.fhir.r5.utils.EOperationOutcome;
|
|
||||||
import org.hl7.fhir.utilities.xhtml.XhtmlNode;
|
|
||||||
|
|
||||||
public class EncounterRenderer extends ResourceRenderer {
|
|
||||||
|
|
||||||
public EncounterRenderer(RenderingContext context) {
|
|
||||||
super(context);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String buildSummary(ResourceWrapper r) throws UnsupportedEncodingException, IOException {
|
|
||||||
return "todo";
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void buildNarrative(RenderingStatus status, XhtmlNode x, ResourceWrapper r) throws FHIRFormatError, DefinitionException, IOException, FHIRException, EOperationOutcome {
|
|
||||||
renderResourceTechDetails(r, x);
|
|
||||||
x.tx("Not done yet");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue