Uses of Class
jodd.lagarto.dom.Document
Packages that use Document
Package
Description
Lagarto DOM - create cool DOM tree with Lagarto parser.
-
Uses of Document in jodd.lagarto.dom
Fields in jodd.lagarto.dom declared as DocumentModifier and TypeFieldDescriptionprotected DocumentNode.ownerDocumentprotected DocumentLagartoDOMBuilderTagVisitor.rootNodeMethods in jodd.lagarto.dom that return DocumentModifier and TypeMethodDescriptionDocument.clone()LagartoDOMBuilderTagVisitor.getDocument()Returns rootdocumentnode of parsed DOM tree.Node.getOwnerDocument()Returns owner document, root node for this DOM tree.DOMBuilder.parse(char[] content) Parses content and returns rootdocument node.DOMBuilder.parse(CharSequence content) Parses content and returns rootdocument node.LagartoDOMBuilder.parse(char[] content) Creates DOM tree from provided content.LagartoDOMBuilder.parse(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 DocumentModifier and TypeMethodDescriptionprotected voidNode.changeOwnerDocument(Node node, Document ownerDocument) Changes owner document for given node and all its children.voidvoidHtmlFosterRules.fixFosterElements(Document document) Fixes foster elements.Constructors in jodd.lagarto.dom with parameters of type DocumentModifierConstructorDescriptionCreates a comment.DocumentType(Document ownerDocument, String value, String publicId, String systemId) Element(Document ownerDocument, String name, boolean voidElement, boolean selfClosed, boolean rawTag) protectedNode(Document document, Node.NodeType nodeType, String nodeName) Creates new node.XmlDeclaration(Document ownerDocument, CharSequence version, CharSequence encoding, CharSequence standalone) -
Uses of Document in jodd.lagarto.dom.render
Methods in jodd.lagarto.dom.render with parameters of type Document