Uses of Class
eu.maveniverse.domtrip.ContainerNode
-
Packages that use ContainerNode Package Description eu.maveniverse.domtrip DomTrip - A lossless XML processing library for Java. -
-
Uses of ContainerNode in eu.maveniverse.domtrip
Subclasses of ContainerNode in eu.maveniverse.domtrip Modifier and Type Class Description classDocumentRepresents the root of an XML document, containing the document element and preserving document-level formatting like XML declarations and DTDs.classElementRepresents an XML element with attributes and children, preserving original formatting including attribute spacing, quote styles, and element structure.Fields in eu.maveniverse.domtrip declared as ContainerNode Modifier and Type Field Description protected ContainerNodeNode. parentThe parent node of this node in the XML treeMethods in eu.maveniverse.domtrip that return ContainerNode Modifier and Type Method Description ContainerNodeNode. parent()Gets the parent container node of this node.Methods in eu.maveniverse.domtrip with parameters of type ContainerNode Modifier and Type Method Description CommentEditor. addComment(ContainerNode parent, java.lang.String content)Adds a comment as a child of the specified parentCommentComment. parent(ContainerNode parent)Sets the parent container node of this node.DocumentDocument. parent(ContainerNode parent)Sets the parent container node of this node.ElementElement. parent(ContainerNode parent)Sets the parent container node of this node.NodeNode. parent(ContainerNode parent)Sets the parent container node of this node.ProcessingInstructionProcessingInstruction. parent(ContainerNode parent)Sets the parent container node of this node.TextText. parent(ContainerNode parent)Sets the parent container node of this node.Editor.EditorCommentBuilderEditor.EditorCommentBuilder. to(ContainerNode parent)Sets the parent node for this comment.Editor.EditorElementBuilderEditor.EditorElementBuilder. to(ContainerNode parent)Sets the parent node for this element.Editor.EditorTextBuilderEditor.EditorTextBuilder. to(ContainerNode parent)Sets the parent node for this text.
-