Uses of Class
coza.opencollab.epub.creator.model.Content
-
Packages that use Content Package Description coza.opencollab.epub.creator.api coza.opencollab.epub.creator.impl coza.opencollab.epub.creator.model -
-
Uses of Content in coza.opencollab.epub.creator.api
Methods in coza.opencollab.epub.creator.api that return Content Modifier and Type Method Description Content
TocCreator. createTocFromBook(EpubBook book)
Creates the EPUB TOC navigation document Content object -
Uses of Content in coza.opencollab.epub.creator.impl
Methods in coza.opencollab.epub.creator.impl that return Content Modifier and Type Method Description Content
TocCreatorDefault. createTocFromBook(EpubBook book)
Creates the EPUB TOC navigation document Content object -
Uses of Content in coza.opencollab.epub.creator.model
Methods in coza.opencollab.epub.creator.model that return Content Modifier and Type Method Description Content
EpubBook. addContent(byte[] contents, String mediaType, String href, boolean toc, boolean spine)
Creates and adds file Content to the bookContent
EpubBook. addContent(InputStream contents, String mediaType, String href, boolean toc, boolean spine)
Creates and adds an InputStream to the bookContent
EpubBook. addTextContent(String title, String href, String content)
Wraps a String in the HTML wrapper and adds create a content object that is added to the content list.Content
Content. getFallBack()
Methods in coza.opencollab.epub.creator.model that return types with arguments of type Content Modifier and Type Method Description List<Content>
EpubBook. getContents()
Methods in coza.opencollab.epub.creator.model with parameters of type Content Modifier and Type Method Description boolean
EpubBook. addContent(Content content)
Adds content to the content list and checks the id.boolean
EpubBook. insertContent(Content content, int index)
Inserts content at a specific index.void
Content. setFallBack(Content fallBack)
The spine parameter will be set to false as we do not want to add the fallback content to the spine.Method parameters in coza.opencollab.epub.creator.model with type arguments of type Content Modifier and Type Method Description void
EpubBook. setContents(List<Content> contents)
-