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

com.openhtmltopdf.extend.FSStream Maven / Gradle / Ivy

Go to download

Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.

The newest version!
package com.openhtmltopdf.extend;

import java.io.InputStream;
import java.io.Reader;

/**
 * Represents a stream. We have a getReader method in case the connection knows more
 * about the charset encoding through the headers returned from the object. 
 */
public interface FSStream {
	public InputStream getStream();
	public Reader getReader();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy