
nl.siegmann.epublib.epub.EpubWriter 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.IOException;
import java.io.OutputStream;
import nl.siegmann.epublib.domain.Book;
/**
*
* @author Pieter Heyvaert
*/
public interface EpubWriter {
void write(Book book, OutputStream out) throws IOException;
BookProcessor getBookProcessor();
void setBookProcessor(BookProcessor bookProcessor);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy