Class PreTagWorker
java.lang.Object
com.itextpdf.html2pdf.attach.impl.tags.DivTagWorker
com.itextpdf.html2pdf.attach.impl.tags.PreTagWorker
- All Implemented Interfaces:
-
IDisplayAware
,ITagWorker
TagWorker class for the
pre
element.
-
Field Summary
Fields inherited from class com.itextpdf.html2pdf.attach.impl.tags.DivTagWorker
multicolContainer
-
Constructor Summary
ConstructorDescriptionPreTagWorker
(com.itextpdf.styledxmlparser.node.IElementNode element, ProcessorContext context) Creates a newPreTagWorker
instance. -
Method Summary
Modifier and TypeMethodDescriptionboolean
processContent
(String content, ProcessorContext context) Placeholder for what needs to be done while the content of a tag is being processed.boolean
processTagChild
(ITagWorker childTagWorker, ProcessorContext context) Placeholder for what needs to be done when a child node is being processed.Methods inherited from class com.itextpdf.html2pdf.attach.impl.tags.DivTagWorker
addBlockChild, getDisplay, getElementResult, postProcessInlineGroup, processEnd
-
Constructor Details
-
PreTagWorker
public PreTagWorker(com.itextpdf.styledxmlparser.node.IElementNode element, ProcessorContext context) Creates a newPreTagWorker
instance.- Parameters:
-
element
- the element -
context
- the context
-
-
Method Details
-
processContent
Description copied from interface:ITagWorker
Placeholder for what needs to be done while the content of a tag is being processed.- Specified by:
-
processContent
in interfaceITagWorker
- Overrides:
-
processContent
in classDivTagWorker
- Parameters:
-
content
- the content of a node -
context
- the processor context - Returns:
- true, if content was successfully processed, otherwise false.
-
processTagChild
Description copied from interface:ITagWorker
Placeholder for what needs to be done when a child node is being processed.- Specified by:
-
processTagChild
in interfaceITagWorker
- Overrides:
-
processTagChild
in classDivTagWorker
- Parameters:
-
childTagWorker
- the tag worker of the child node -
context
- the processor context - Returns:
- true, if child was successfully processed, otherwise false.
-