Uses of Class
jodd.lagarto.dom.Document
-
Packages that use Document Package Description jodd.lagarto.dom Lagarto DOM - create cool DOM tree with Lagarto parser.jodd.lagarto.dom.render -
-
Uses of Document in jodd.lagarto.dom
Fields in jodd.lagarto.dom declared as Document Modifier and Type Field Description protected DocumentNode. ownerDocumentprotected DocumentLagartoDOMBuilderTagVisitor. rootNodeMethods in jodd.lagarto.dom that return Document Modifier and Type Method Description DocumentDocument. clone()DocumentLagartoDOMBuilderTagVisitor. getDocument()Returns rootdocumentnode of parsed DOM tree.DocumentNode. getOwnerDocument()Returns owner document, root node for this DOM tree.DocumentDOMBuilder. parse(char[] content)Parses content and returns rootdocument node.DocumentDOMBuilder. parse(java.lang.CharSequence content)Parses content and returns rootdocument node.DocumentLagartoDOMBuilder. parse(char[] content)Creates DOM tree from provided content.DocumentLagartoDOMBuilder. parse(java.lang.CharSequence content)Creates DOM tree from the provided content.protected DocumentLagartoDOMBuilder. parseWithLagarto(LagartoParser lagartoParser)Parses the content using provided lagarto parser.Methods in jodd.lagarto.dom with parameters of type Document Modifier and Type Method Description protected voidNode. changeOwnerDocument(Node node, Document ownerDocument)Changes owner document for given node and all its children.voidNodeVisitor. document(Document document)voidHtmlFosterRules. fixFosterElements(Document document)Fixes foster elements.Constructors in jodd.lagarto.dom with parameters of type Document Constructor Description CData(Document ownerDocument, java.lang.String cdata)Comment(Document ownerDocument, java.lang.String comment)Creates a comment.DocumentType(Document ownerDocument, java.lang.String value, java.lang.String publicId, java.lang.String systemId)Element(Document ownerDocument, java.lang.String name)Element(Document ownerDocument, java.lang.String name, boolean voidElement, boolean selfClosed, boolean rawTag)Element(Document ownerNode, Tag tag, boolean voidElement, boolean selfClosed)Node(Document document, Node.NodeType nodeType, java.lang.String nodeName)Creates new node.Text(Document ownerDocument, java.lang.String text)XmlDeclaration(Document ownerDocument, java.lang.CharSequence version, java.lang.CharSequence encoding, java.lang.CharSequence standalone) -
Uses of Document in jodd.lagarto.dom.render
Methods in jodd.lagarto.dom.render with parameters of type Document Modifier and Type Method Description voidLagartoHtmlRendererNodeVisitor. document(Document document)
-