nl.siegmann.epublib.bookprocessor.HtmlSplitterBookProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epublib-tools Show documentation
Show all versions of epublib-tools Show documentation
A java library for reading/writing/manipulating epub files
The newest version!
package nl.siegmann.epublib.bookprocessor;
import nl.siegmann.epublib.domain.Book;
import nl.siegmann.epublib.epub.BookProcessor;
/**
* In the future this will split up too large html documents into smaller ones.
*
* @author paul
*
*/
public class HtmlSplitterBookProcessor implements BookProcessor {
@Override
public Book processBook(Book book) {
return book;
}
}