com.thaiopensource.relaxng.output.rnc.Prettyprinter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trang Show documentation
Show all versions of trang Show documentation
Jing/Trang - tools for validating and translating RelaxNG
The newest version!
package com.thaiopensource.relaxng.output.rnc;
import java.io.IOException;
interface Prettyprinter {
public static class WrappedException extends RuntimeException {
private final IOException cause;
public Throwable getCause() {
return cause;
}
public IOException getIOException() {
return cause;
}
public WrappedException(IOException cause) {
this.cause = cause;
}
}
void hardNewline();
void softNewline(String noBreak);
void text(String str);
void startNest(String indent);
void endNest();
void startGroup();
void endGroup();
void close();
}