4647484950515253
} @Nonnull @Override public Writer getWriter() { throw new OWLRuntimeException( "Writer not available. getWriter() should not be called if isWriterAvailable() returns false."); }
6768697071727374
return false; } @Override public IRI getDocumentIRI() { throw new OWLRuntimeException( "IRI not available. getDocumentIRI() should not be called if isDocumentIRIAvailable() returns false."); }
7879808182838485
private void writeOpenBracket() { try { writer.write("("); } catch (IOException e) { throw new OWLRuntimeException(e); } }
8687888990919293
private void writeCloseBracket() { try { writer.write(")"); } catch (IOException e) { throw new OWLRuntimeException(e); } }
949596979899100101
private void write(int i) { try { writer.write(" " + i); } catch (IOException e) { throw new OWLRuntimeException(e); } }
102103104105106107108109
private void write(@Nonnull IRI iri) { try { writer.write(iri.toString()); } catch (IOException e) { throw new OWLRuntimeException(e); } }
112113114115116117118119
try { writeSpace(); writer.write(":"); writer.write(v.toString()); } catch (IOException e) { throw new OWLRuntimeException(e); } }
120121122123124125126127
private void write(KRSS2Vocabulary v) { try { writer.write(v.toString()); } catch (IOException e) { throw new OWLRuntimeException(e); } }
128129130131132133134135
private void writeSpace() { try { writer.write(" "); } catch (IOException e) { throw new OWLRuntimeException(e); } }
136137138139140141142143
private void writeln() { try { writer.write("\n"); } catch (IOException e) { throw new OWLRuntimeException(e); } }