Uses of Interface
nl.flotsam.pecia.Para

Packages that use Para
nl.flotsam.pecia The interfaces reflecting different chunks of a document; think sections, paragraphs, tables, footnotes, etc. 
nl.flotsam.pecia.builder The package providing the interfaces to be implemented by classes responsible for generating content. 
nl.flotsam.pecia.builder.base The package providing a default implementation of the builder interfaces. 
nl.flotsam.pecia.builder.html The package providing a default implementation of the builder interfaces for generating HTML output. 
 

Uses of Para in nl.flotsam.pecia
 

Methods in nl.flotsam.pecia that return Para
 Para<T> ParaContents.code(String text)
          Adds some code to the paragraph.
 Para<T> ParaContents.document(Documenter<ParaContents<?>> target)
          Generates documentation, and returns the current context.
 Para<T> ParaContents.email(String email)
          Inserts an email address.
 Para<T> ParaContents.emphasis(String text)
          Adds an inline emphasized section.
 Para<T> ParaContents.footnote(String text)
          Inserts a footnote, containing a Para containing the text passed in.
 Para<T> ParaContents.link(Object id, String text)
          Constructs a link to the documet item identified by the specified id.
 Para<? extends V> SimpleContents.para()
          Adds a paragraph.
 Para<? extends ListItem<T>> ListItem.para()
          Constructs a new paragraph inside of the list item.
 Para<? extends LastEntry<T>> LastEntry.para()
          Adds a paragraph to the current table entry.
 Para<? extends Footnote<T>> Footnote.para()
          Constructs a new Para inside the Footnote.
 Para<? extends Entry<T>> Entry.para()
          Creates a paragraph.
 Para<T> ParaContents.term(Object id, String text)
          Inserts a term into the content.
 Para<T> ParaContents.text(String text)
          Appends some text to the paragraph.
 Para<T> ParaContents.xref(String id)
          Inserts a cross reference to another document element.
 

Methods in nl.flotsam.pecia that return types with arguments of type Para
 Footnote<? extends Para<T>> ParaContents.footnote()
          Inserts a footnote.
 

Uses of Para in nl.flotsam.pecia.builder
 

Subinterfaces of Para in nl.flotsam.pecia.builder
 interface ParaBuilder<T>
           
 

Uses of Para in nl.flotsam.pecia.builder.base
 

Classes in nl.flotsam.pecia.builder.base that implement Para
 class DefaultParaBuilder<T>
           
 

Methods in nl.flotsam.pecia.builder.base that return Para
 Para<T> DefaultParaBuilder.code(String text)
           
 Para<T> DefaultParaBuilder.document(Documenter<ParaContents<?>> target)
           
 Para<T> DefaultParaBuilder.email(String email)
           
 Para<T> DefaultParaBuilder.emphasis(String text)
           
 Para<T> DefaultParaBuilder.footnote(String text)
           
 Para<T> DefaultParaBuilder.link(Object id, String text)
           
 Para<? extends Section<T>> DefaultSectionBuilder.para()
           
 Para<? extends ListItem<T>> DefaultListItemBuilder.para()
           
 Para<? extends LastEntry<T>> DefaultLastEntryBuilder.para()
           
 Para<? extends Footnote<T>> DefaultFootnoteBuilder.para()
           
 Para<? extends Entry<T>> DefaultEntryBuilder.para()
           
 Para<? extends Article<T>> DefaultArticleBuilder.para()
           
 Para<T> DefaultParaBuilder.term(Object id, String text)
           
 Para<T> DefaultParaBuilder.text(String text)
           
 Para<T> DefaultParaBuilder.xref(String id)
           
 

Methods in nl.flotsam.pecia.builder.base that return types with arguments of type Para
 Footnote<? extends Para<T>> DefaultParaBuilder.footnote()
           
 

Uses of Para in nl.flotsam.pecia.builder.html
 

Classes in nl.flotsam.pecia.builder.html that implement Para
static class HtmlDocumentBuilder.HtmlParaBuilder<T>
           
 

Methods in nl.flotsam.pecia.builder.html that return Para
 Para<T> HtmlDocumentBuilder.HtmlParaBuilder.code(String text)
           
 Para<T> HtmlDocumentBuilder.HtmlParaBuilder.email(String email)
           
 Para<T> HtmlDocumentBuilder.HtmlParaBuilder.emphasis(String text)
           
 Para<T> HtmlDocumentBuilder.HtmlParaBuilder.link(Object id, String text)
           
 Para<T> HtmlDocumentBuilder.HtmlParaBuilder.term(Object id, String text)
           
 Para<T> HtmlDocumentBuilder.HtmlParaBuilder.text(String text)
           
 Para<T> HtmlDocumentBuilder.HtmlParaBuilder.xref(String id)
           
 



Copyright © 2010. All Rights Reserved.