nl.siegmann.epublib.epub.HtmlProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epublib-core Show documentation
Show all versions of epublib-core Show documentation
A java library for reading/writing/manipulating epub files
The newest version!
package nl.siegmann.epublib.epub;
import java.io.OutputStream;
import nl.siegmann.epublib.domain.Resource;
public interface HtmlProcessor {
void processHtmlResource(Resource resource, OutputStream out);
}