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

hollow.model.ChapterInfo Maven / Gradle / Ivy

The newest version!
package hollow.model;

public class ChapterInfo {
    BookId bookId;
    int pages;
    byte[] content;

    public ChapterInfo(BookId bookId, int pages, byte[] content) {
        this.bookId = bookId;
        this.pages = pages;
        this.content = content;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy