Uses of Interface
com.gitlab.pdftk_java.com.lowagie.text.Element
-
Packages that use Element Package Description com.gitlab.pdftk_java.com.lowagie.text com.gitlab.pdftk_java.com.lowagie.text.markup com.gitlab.pdftk_java.com.lowagie.text.pdf -
-
Uses of Element in com.gitlab.pdftk_java.com.lowagie.text
Subinterfaces of Element in com.gitlab.pdftk_java.com.lowagie.text Modifier and Type Interface Description interface
MarkupAttributes
Defines the interface for anElement
with markup attributes-- that is, random String-to-String properties for representation in markup languages such as HTML and XML.interface
TextElementArray
Interface for a text element to which other objects can be added.Classes in com.gitlab.pdftk_java.com.lowagie.text that implement Element Modifier and Type Class Description class
Anchor
AnAnchor
can be a reference or a destination of a reference.class
Annotation
AnAnnotation
is a little note that can be added to a page on a document.class
Chunk
This is the smallest significant part of text that can be added to a document.class
Header
This is anElement
that contains some userdefined meta information about the document.class
List
AList
contains severalListItem
s.class
ListItem
AListItem
is aParagraph
that can be added to aList
.class
Meta
This is anElement
that contains some meta information about the document.class
Paragraph
AParagraph
is a series ofChunk
s and/orPhrases
.class
Phrase
APhrase
is a series ofChunk
s.class
Rectangle
ARectangle
is the representation of a geometric figure.Methods in com.gitlab.pdftk_java.com.lowagie.text with parameters of type Element Modifier and Type Method Description boolean
Document. add(Element element)
Adds anElement
to theDocument
.boolean
DocWriter. add(Element element)
Signals that anElement
was added to theDocument
.boolean
ElementListener. add(Element element)
Signals that anElement
was added to theDocument
.protected static boolean
DocWriter. hasMarkupAttributes(Element element)
Returnstrue
if the specifiedElement
implementsMarkupAttributes
and has one or more attributes to write. -
Uses of Element in com.gitlab.pdftk_java.com.lowagie.text.markup
Methods in com.gitlab.pdftk_java.com.lowagie.text.markup that return Element Modifier and Type Method Description Element
MarkupParser. getObject(java.util.Properties attributes)
Returns an object based on a tag and its attributes.private Element
MarkupParser. retrieveListItem(Font font, java.util.Properties styleattributes)
Returns a ListItem based on the styleattributes.Element
MarkupParser. retrieveParagraph(Font font, java.util.Properties styleattributes)
Retrieves a Paragraph based on some style attributes.Element
MarkupParser. retrievePhrase(Font font, java.util.Properties styleattributes)
Retrieves a Phrase based on some style attributes. -
Uses of Element in com.gitlab.pdftk_java.com.lowagie.text.pdf
Methods in com.gitlab.pdftk_java.com.lowagie.text.pdf with parameters of type Element Modifier and Type Method Description boolean
PdfDocument. add(Element element)
Signals that anElement
was added to theDocument
.void
ColumnText. addElement(Element element)
Adds an element.
-