|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Element | |
---|---|
com.itextpdf.text | |
com.itextpdf.text.html.simpleparser | |
com.itextpdf.text.pdf | |
com.itextpdf.text.pdf.draw |
Uses of Element in com.itextpdf.text |
---|
Subinterfaces of Element in com.itextpdf.text | |
---|---|
interface |
LargeElement
Interface implemented by Element objects that can potentially consume a lot of memory. |
interface |
TextElementArray
Interface for a text element to which other objects can be added. |
Classes in com.itextpdf.text that implement Element | |
---|---|
class |
Anchor
An Anchor can be a reference or a destination of a reference. |
class |
Annotation
An Annotation is a little note that can be added to a page on
a document. |
class |
Chapter
A Chapter is a special Section . |
class |
ChapterAutoNumber
Chapter with auto numbering. |
class |
Chunk
This is the smallest significant part of text that can be added to a document. |
class |
GreekList
A special-version of LIST which use greek-letters. |
class |
Header
This is an Element that contains
some user defined meta information about the document. |
class |
Image
An Image is the representation of a graphic element (JPEG, PNG
or GIF) that has to be inserted into the document |
class |
ImgCCITT
CCITT Image data that has to be inserted into the document |
class |
ImgJBIG2
Support for JBIG2 images. |
class |
ImgRaw
Raw Image data that has to be inserted into the document |
class |
ImgTemplate
PdfTemplate that has to be inserted into the document |
class |
ImgWMF
An ImgWMF is the representation of a windows metafile
that has to be inserted into the document |
class |
Jpeg
An Jpeg is the representation of a graphic element (JPEG)
that has to be inserted into the document |
class |
Jpeg2000
An Jpeg2000 is the representation of a graphic element (JPEG)
that has to be inserted into the document |
class |
List
A List contains several ListItem s. |
class |
ListItem
A ListItem is a Paragraph
that can be added to a List . |
class |
MarkedObject
Wrapper that allows to add properties to 'basic building block' objects. |
class |
MarkedSection
Wrapper that allows to add properties to a Chapter/Section object. |
class |
Meta
This is an Element that contains
some meta information about the document. |
class |
Paragraph
A Paragraph is a series of Chunk s and/or Phrases . |
class |
Phrase
A Phrase is a series of Chunk s. |
class |
Rectangle
A Rectangle is the representation of a geometric figure. |
class |
RectangleReadOnly
A RectangleReadOnly is the representation of a geometric figure. |
class |
RomanList
A special-version of LIST which use roman-letters. |
class |
Section
A Section is a part of a Document containing
other Section s, Paragraph s, List
and/or Table s. |
class |
ZapfDingbatsList
A special-version of LIST which use zapfdingbats-letters. |
class |
ZapfDingbatsNumberList
A special-version of LIST which use zapfdingbats-numbers (1..10). |
Fields in com.itextpdf.text declared as Element | |
---|---|
protected Element |
MarkedObject.element
The element that is wrapped in a MarkedObject. |
Fields in com.itextpdf.text with type parameters of type Element | |
---|---|
protected ArrayList<Element> |
List.list
This is the ArrayList containing the different ListItem s. |
Methods in com.itextpdf.text that return types with arguments of type Element | |
---|---|
ArrayList<Element> |
List.getItems()
Gets all the items in the list. |
Methods in com.itextpdf.text with parameters of type Element | |
---|---|
boolean |
ZapfDingbatsNumberList.add(Element o)
Adds an Element to the List . |
boolean |
ZapfDingbatsList.add(Element o)
Adds an Element to the List . |
boolean |
TextElementArray.add(Element element)
Adds an element to the TextElementArray . |
boolean |
Section.add(Element element)
Adds a Paragraph , List , Table or another Section
to this Section . |
boolean |
RomanList.add(Element o)
Adds an Element to the List . |
boolean |
Phrase.add(Element element)
Adds a Chunk , Anchor or another Phrase
to this Phrase . |
boolean |
Paragraph.add(Element o)
Adds an Element to the Paragraph . |
boolean |
MarkedSection.add(Element o)
Adds a Paragraph , List , Table or another Section
to this Section . |
boolean |
List.add(Element o)
Adds an Element to the List . |
boolean |
GreekList.add(Element o)
Adds an Element to the List . |
boolean |
ElementListener.add(Element element)
Signals that an Element was added to the Document . |
boolean |
DocWriter.add(Element element)
Signals that an Element was added to the Document . |
boolean |
Document.add(Element element)
Adds an Element to the Document . |
void |
Section.add(int index,
Element element)
Adds a Paragraph , List or Table
to this Section . |
void |
Phrase.add(int index,
Element element)
Adds a Chunk , an Anchor or another Phrase
to this Phrase . |
void |
MarkedSection.add(int index,
Element o)
Adds a Paragraph , List or Table
to this Section . |
protected void |
Phrase.addSpecial(Element object)
Adds an Element to the Paragraph . |
Method parameters in com.itextpdf.text with type arguments of type Element | |
---|---|
boolean |
Section.addAll(Collection<? extends Element> collection)
Adds a collection of Element s
to this Section . |
boolean |
Phrase.addAll(Collection<? extends Element> collection)
Adds a collection of Chunk s
to this Phrase . |
boolean |
MarkedSection.addAll(Collection<? extends Element> collection)
Adds a collection of Element s
to this Section . |
Constructors in com.itextpdf.text with parameters of type Element | |
---|---|
MarkedObject(Element element)
Creates a MarkedObject. |
Uses of Element in com.itextpdf.text.html.simpleparser |
---|
Classes in com.itextpdf.text.html.simpleparser that implement Element | |
---|---|
class |
CellWrapper
We use a CellWrapper because we need some extra info that isn't available in PdfPCell. |
class |
TableWrapper
We use a TableWrapper because PdfPTable is rather complex to put on the HTMLWorker stack. |
Fields in com.itextpdf.text.html.simpleparser with type parameters of type Element | |
---|---|
protected List<Element> |
HTMLWorker.objectList
The resulting list of elements. |
protected Stack<Element> |
HTMLWorker.stack
Stack with the Elements that already have been processed. |
Methods in com.itextpdf.text.html.simpleparser that return types with arguments of type Element | |
---|---|
static List<Element> |
HTMLWorker.parseToList(Reader reader,
StyleSheet style)
Parses an HTML source to a List of Element objects |
static List<Element> |
HTMLWorker.parseToList(Reader reader,
StyleSheet style,
HashMap<String,Object> providers)
Parses an HTML source to a List of Element objects |
static List<Element> |
HTMLWorker.parseToList(Reader reader,
StyleSheet style,
Map<String,HTMLTagProcessor> tags,
HashMap<String,Object> providers)
Parses an HTML source to a List of Element objects |
Methods in com.itextpdf.text.html.simpleparser with parameters of type Element | |
---|---|
boolean |
HTMLWorker.add(Element element)
|
boolean |
CellWrapper.add(Element o)
Implements the add method of the TextElementArray interface. |
void |
HTMLWorker.pushToStack(Element element)
Pushes an element to the Stack. |
Uses of Element in com.itextpdf.text.pdf |
---|
Classes in com.itextpdf.text.pdf that implement Element | |
---|---|
class |
MultiColumnText
Formats content into one or more columns bounded by a rectangle. |
class |
PdfPCell
A cell in a PdfPTable. |
class |
PdfPTable
This is a table that can be put at an absolute position but can also be added to the document as the class Table . |
Fields in com.itextpdf.text.pdf with type parameters of type Element | |
---|---|
protected LinkedList<Element> |
ColumnText.compositeElements
|
Methods in com.itextpdf.text.pdf that return types with arguments of type Element | |
---|---|
List<Element> |
PdfPCell.getCompositeElements()
Returns the list of composite elements of the column. |
Methods in com.itextpdf.text.pdf with parameters of type Element | |
---|---|
boolean |
PdfDocument.add(Element element)
Signals that an Element was added to the Document . |
void |
PdfPCell.addElement(Element element)
Adds an iText element to the cell. |
void |
MultiColumnText.addElement(Element element)
Add an element to be rendered in a column. |
void |
ColumnText.addElement(Element element)
Adds an element. |
Uses of Element in com.itextpdf.text.pdf.draw |
---|
Classes in com.itextpdf.text.pdf.draw that implement Element | |
---|---|
class |
DottedLineSeparator
Element that draws a dotted line from left to right. |
class |
LineSeparator
Element that draws a solid line from left to right. |
class |
VerticalPositionMark
Helper class implementing the DrawInterface. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |