Uses of Class
org.exoplatform.social.common.xmlprocessor.model.Node
Packages that use Node
Package
Description
Provides xml processor classes for sanitize purpose: allows using html tags.
-
Uses of Node in org.exoplatform.social.common.xmlprocessor
Methods in org.exoplatform.social.common.xmlprocessor that return NodeModifier and TypeMethodDescriptionstatic NodeDOMParser.createDOMTree(List<String> xmlTokens) Creates the XML DOM tree from XML token List tree.static NodeDOMParser.createDOMTree(Node currentNode, List<String> xmlTokens) Creates the XML DOM tree from XML token List tree as childNodeList of currentNode.Methods in org.exoplatform.social.common.xmlprocessor with parameters of type NodeModifier and TypeMethodDescriptionstatic NodeDOMParser.createDOMTree(Node currentNode, List<String> xmlTokens) Creates the XML DOM tree from XML token List tree as childNodeList of currentNode. -
Uses of Node in org.exoplatform.social.common.xmlprocessor.model
Methods in org.exoplatform.social.common.xmlprocessor.model that return NodeMethods in org.exoplatform.social.common.xmlprocessor.model that return types with arguments of type NodeModifier and TypeMethodDescriptionNode.getChildNodes()Gets the list child nodes of current Node.Methods in org.exoplatform.social.common.xmlprocessor.model with parameters of type NodeModifier and TypeMethodDescriptionvoidNode.addChildNode(Node childNode) Adds child Node to this Node.voidNode.insertAfter(int position, Node node) Insert Node to DOM tree after the node at positionvoidNode.insertAfter(Node refNode, Node nodeToInsert) insert Node to DOM tree after refNodevoidNode.setParentNode(Node parentNode) Sets the parent Node of currentNodeMethod parameters in org.exoplatform.social.common.xmlprocessor.model with type arguments of type NodeModifier and TypeMethodDescriptionvoidNode.setChildNodes(LinkedList<Node> childNodes) Sets the list child nodes of current Node.