Uses of Class
org.odftoolkit.simple.text.Paragraph

Packages that use Paragraph
org.odftoolkit.simple Provide high level methods to frequently used ODF documents. 
org.odftoolkit.simple.draw Provide high level methods to manipulate draw frame and text box. 
org.odftoolkit.simple.table Provide convenient methods to manipulate table in ODF text and spreadsheet document. 
org.odftoolkit.simple.text Provide convenient methods to manipulate frequently used structures in ODF text document, such as list and section. 
 

Uses of Paragraph in org.odftoolkit.simple
 

Methods in org.odftoolkit.simple that return Paragraph
 Paragraph TextDocument.addParagraph(String text)
          Creates a new paragraph and append text.
 Paragraph TextDocument.getParagraphByIndex(int index, boolean isEmptyParagraphSkipped)
           
 Paragraph TextDocument.getParagraphByReverseIndex(int reverseIndex, boolean isEmptyParagraphSkipped)
           
 

Methods in org.odftoolkit.simple that return types with arguments of type Paragraph
 Iterator<Paragraph> TextDocument.getParagraphIterator()
           
 

Methods in org.odftoolkit.simple with parameters of type Paragraph
 void TextDocument.addColumnBreak(Paragraph refParagraph)
          Appends a new column break to this document after the reference paragraph.
 void TextDocument.addPageBreak(Paragraph refParagraph)
          Appends a new page break to this document after the reference paragraph.
 boolean TextDocument.removeParagraph(Paragraph para)
          Remove paragraph from this document
 

Uses of Paragraph in org.odftoolkit.simple.draw
 

Methods in org.odftoolkit.simple.draw that return Paragraph
 Paragraph Textbox.addParagraph(String textContent)
           
 Paragraph Textbox.getParagraphByIndex(int index, boolean isEmptyParagraphSkipped)
           
 Paragraph Textbox.getParagraphByReverseIndex(int reverseIndex, boolean isEmptyParagraphSkipped)
           
 

Methods in org.odftoolkit.simple.draw that return types with arguments of type Paragraph
 Iterator<Paragraph> Textbox.getParagraphIterator()
           
 

Methods in org.odftoolkit.simple.draw with parameters of type Paragraph
 boolean Textbox.removeParagraph(Paragraph para)
           
 

Uses of Paragraph in org.odftoolkit.simple.table
 

Methods in org.odftoolkit.simple.table that return Paragraph
 Paragraph Cell.addParagraph(String text)
          Creates a new paragraph and append text
 Paragraph Cell.getParagraphByIndex(int index, boolean isEmptyParagraphSkipped)
          Return a paragraph with a given index.
 Paragraph Cell.getParagraphByReverseIndex(int reverseIndex, boolean isEmptyParagraphSkipped)
          Return a paragraph with a given index.
 

Methods in org.odftoolkit.simple.table that return types with arguments of type Paragraph
 Iterator<Paragraph> Cell.getParagraphIterator()
          Return an Iterator of the paragraph in this container.
 

Methods in org.odftoolkit.simple.table with parameters of type Paragraph
 boolean Cell.removeParagraph(Paragraph para)
          Remove paragraph from this document
 

Uses of Paragraph in org.odftoolkit.simple.text
 

Methods in org.odftoolkit.simple.text that return Paragraph
 Paragraph Section.addParagraph(String textContent)
           
 Paragraph ParagraphContainer.addParagraph(String textContent)
          Add paragraph at the end of the container with specified text content.
 Paragraph AbstractParagraphContainer.addParagraph(String textContent)
          Add paragraph at the end of the container with specified text content.
static Paragraph Paragraph.getInstanceof(TextParagraphElementBase paragraphElement)
          Gets a paragraph instance by an instance of TextParagraphElementBase.
 Paragraph Section.getParagraphByIndex(int index, boolean isEmptyParagraphSkipped)
           
 Paragraph ParagraphContainer.getParagraphByIndex(int index, boolean isEmptyParagraphSkipped)
          Return a paragraph with a given index.
 Paragraph AbstractParagraphContainer.getParagraphByIndex(int index, boolean isEmptyParagraphSkipped)
          Return a paragraph with a given index.
 Paragraph Section.getParagraphByReverseIndex(int reverseIndex, boolean isEmptyParagraphSkipped)
           
 Paragraph ParagraphContainer.getParagraphByReverseIndex(int reverseIndex, boolean isEmptyParagraphSkipped)
          Return a paragraph with a given index.
 Paragraph AbstractParagraphContainer.getParagraphByReverseIndex(int reverseIndex, boolean isEmptyParagraphSkipped)
          Return a paragraph with a given index.
static Paragraph Paragraph.newParagraph(ParagraphContainer container)
          Create an instance of paragraph
 

Methods in org.odftoolkit.simple.text that return types with arguments of type Paragraph
 Iterator<Paragraph> Section.getParagraphIterator()
           
 Iterator<Paragraph> ParagraphContainer.getParagraphIterator()
          Return an Iterator of the paragraph in this container.
 Iterator<Paragraph> AbstractParagraphContainer.getParagraphIterator()
          Return an Iterator of the paragraph in this container.
 

Methods in org.odftoolkit.simple.text with parameters of type Paragraph
 boolean Section.removeParagraph(Paragraph para)
           
 boolean ParagraphContainer.removeParagraph(Paragraph para)
          Remove paragraph from the container
 boolean AbstractParagraphContainer.removeParagraph(Paragraph para)
          Remove paragraph from the container
 



Copyright © 2010-2011 The Apache Software Foundation. All Rights Reserved.