Class AbbrTagWorker
java.lang.Object
com.itextpdf.html2pdf.attach.impl.tags.SpanTagWorker
com.itextpdf.html2pdf.attach.impl.tags.AbbrTagWorker
- All Implemented Interfaces:
-
IDisplayAware
,ITagWorker
Tag worker class for the
abbr
element.
-
Constructor Summary
ConstructorDescriptionAbbrTagWorker
(com.itextpdf.styledxmlparser.node.IElementNode element, ProcessorContext context) Creates a newAbbrTagWorker
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.void
processEnd
(com.itextpdf.styledxmlparser.node.IElementNode element, ProcessorContext context) Placeholder for what needs to be done after the content of a tag has been processed.Methods inherited from class com.itextpdf.html2pdf.attach.impl.tags.SpanTagWorker
getAllElements, getDisplay, getElementResult, getOwnLeafElements, processTagChild
-
Constructor Details
-
AbbrTagWorker
public AbbrTagWorker(com.itextpdf.styledxmlparser.node.IElementNode element, ProcessorContext context) Creates a newAbbrTagWorker
instance.- Parameters:
-
element
- the tag -
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 classSpanTagWorker
- Parameters:
-
content
- the content of a node -
context
- the processor context - Returns:
- true, if content was successfully processed, otherwise false.
-
processEnd
public void processEnd(com.itextpdf.styledxmlparser.node.IElementNode element, ProcessorContext context) Description copied from interface:ITagWorker
Placeholder for what needs to be done after the content of a tag has been processed.- Specified by:
-
processEnd
in interfaceITagWorker
- Overrides:
-
processEnd
in classSpanTagWorker
- Parameters:
-
element
- the element node -
context
- the processor context
-