com.openhtmltopdf.outputdevice.helper.BaseDocument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openhtmltopdf-core Show documentation
Show all versions of openhtmltopdf-core Show documentation
Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.
package com.openhtmltopdf.outputdevice.helper;
import java.io.File;
import org.w3c.dom.Document;
public class BaseDocument {
public final String html;
public final Document document;
public final File file;
public final String uri;
public final String baseUri;
public BaseDocument(String baseUri, String html, Document document, File file, String uri) {
this.html = html;
this.document = document;
this.file = file;
this.uri = uri;
this.baseUri = baseUri;
}
}