001package org.hl7.fhir.dstu3.elementmodel; 002 003import java.io.InputStream; 004import java.io.OutputStream; 005 006import org.hl7.fhir.dstu3.formats.IParser.OutputStyle; 007import org.hl7.fhir.dstu3.context.IWorkerContext; 008 009public class TurtleParser extends ParserBase { 010 011 public TurtleParser(IWorkerContext theContext) { 012 super(theContext); 013 } 014 015 @Override 016 public Element parse(InputStream theStream) { 017 throw new UnsupportedOperationException(); 018 } 019 020 @Override 021 public void compose(Element theE, OutputStream theDestination, OutputStyle theStyle, String theBase) throws Exception { 022 throw new UnsupportedOperationException(); 023 } 024 025}