Uses of Interface
org.dom4j.Comment
-
Packages that use Comment Package Description org.dom4j Defines the XML Document Object Model in Java interfaces together with some helper classes.org.dom4j.dom An implementation of the dom4j API which also supports the W3C object model.org.dom4j.io Provides input and output via SAX and DOM together with writing dom4j objects to streams as XML text.org.dom4j.tree Contains the default implementations of the dom4j Document Object Model together with some helpful base classes for those wishing to implement their own document object model.org.dom4j.util A collection of utility classes for the dom4j API. -
-
Uses of Comment in org.dom4j
Methods in org.dom4j that return Comment Modifier and Type Method Description CommentDocumentFactory. createComment(String text)static CommentDocumentHelper. createComment(String text)Methods in org.dom4j with parameters of type Comment Modifier and Type Method Description voidBranch. add(Comment comment)Adds the givenCommentto this branch.booleanBranch. remove(Comment comment)Removes the givenCommentif the node is an immediate child of this branch.voidVisitor. visit(Comment node)Visits the givenCommentvoidVisitorSupport. visit(Comment node) -
Uses of Comment in org.dom4j.dom
Classes in org.dom4j.dom that implement Comment Modifier and Type Class Description classDOMCommentDOMTextimplements a Text node which supports the W3C DOM API.Methods in org.dom4j.dom that return Comment Modifier and Type Method Description CommentDOMDocumentFactory. createComment(String text) -
Uses of Comment in org.dom4j.io
Methods in org.dom4j.io that return Comment Modifier and Type Method Description CommentSTAXEventReader. createComment(Comment comment)Constructs a new DOM4J Comment from the provided StAX Comment event.CommentSTAXEventReader. readComment(XMLEventReader reader)Constructs a DOM4J Comment from the provided event stream.Methods in org.dom4j.io with parameters of type Comment Modifier and Type Method Description protected voidDOMWriter. appendDOMTree(Document domDocument, Node domCurrent, Comment comment)CommentSTAXEventWriter. createComment(Comment comment)voidSAXWriter. write(Comment comment)Generates SAX events for the given CommentvoidXMLWriter. write(Comment comment)Writes the givenComment.voidSTAXEventWriter. writeComment(Comment comment)Writes a DOM4JCommentto the stream. -
Uses of Comment in org.dom4j.tree
Classes in org.dom4j.tree that implement Comment Modifier and Type Class Description classAbstractCommentAbstractCommentis an abstract base class for tree implementors to use for implementation inheritence.classDefaultCommentDefaultCommentis the default Comment implementation.classFlyweightCommentFlyweightCommentis a Flyweight pattern implementation of a singly linked, read-only XML Comment.Methods in org.dom4j.tree with parameters of type Comment Modifier and Type Method Description voidAbstractBranch. add(Comment comment)voidAbstractElement. add(Comment comment)booleanAbstractBranch. remove(Comment comment)booleanAbstractElement. remove(Comment comment) -
Uses of Comment in org.dom4j.util
Methods in org.dom4j.util that return Comment Modifier and Type Method Description CommentProxyDocumentFactory. createComment(String text)
-