Uses of Class
org.exoplatform.social.common.xmlprocessor.model.Node
-
Packages that use Node Package Description org.exoplatform.social.common.xmlprocessor Provides xml processor classes for sanitize purpose: allows using html tags.org.exoplatform.social.common.xmlprocessor.model -
-
Uses of Node in org.exoplatform.social.common.xmlprocessor
Methods in org.exoplatform.social.common.xmlprocessor that return Node Modifier and Type Method Description static 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 Node Modifier and Type Method Description static 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 Node Modifier and Type Method Description NodeNode. getParentNode()Gets parent Node of current Node.Methods in org.exoplatform.social.common.xmlprocessor.model that return types with arguments of type Node Modifier and Type Method Description LinkedList<Node>Node. getChildNodes()Gets the list child nodes of current Node.Methods in org.exoplatform.social.common.xmlprocessor.model with parameters of type Node Modifier and Type Method Description voidNode. 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 Node Modifier and Type Method Description voidNode. setChildNodes(LinkedList<Node> childNodes)Sets the list child nodes of current Node.
-