All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thaiopensource.relaxng.output.rnc.Prettyprinter Maven / Gradle / Ivy

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy