Class JsoupElementNode

java.lang.Object
com.itextpdf.styledxmlparser.node.impl.jsoup.node.JsoupNode
com.itextpdf.styledxmlparser.node.impl.jsoup.node.JsoupElementNode
All Implemented Interfaces:
IAttributesContainer, IElementNode, INameContainer, INode, IStylesContainer
Direct Known Subclasses:
JsoupDocumentNode

public class JsoupElementNode extends JsoupNode implements IElementNode
Implementation of the IElementNode interface; wrapper for the JSoup JsoupNode class.
  • Field Details

    • element

      private final Element element
      The JSoup element.
    • attributes

      private final IAttributes attributes
      The attributes.
    • elementResolvedStyles

      private Map<String,String> elementResolvedStyles
      The resolved styles.
    • customDefaultStyles

      private List<Map<String,String>> customDefaultStyles
      The custom default styles.
    • lang

      private String lang
      The language.
  • Constructor Details

    • JsoupElementNode

      public JsoupElementNode(Element element)
      Creates a new JsoupElementNode instance.
      Parameters:
      element - the element
  • Method Details