use of org.apache.jena.riot.out.NodeFormatterTTL in project jena by apache.
the class PrintingStreamRDF method base.
@Override
public void base(String base) {
out.print("BASE");
out.print(" ");
getFmt().formatURI(out, base);
out.println();
// Reset the formatter because of the new base URI.
pretty = new NodeFormatterTTL(base, prefixMap);
}
Aggregations