Uses of Interface
de.pdark.decentxml.Node
-
Packages that use Node Package Description de.pdark.decentxml de.pdark.decentxml.dtd de.pdark.decentxml.mapping -
-
Uses of Node in de.pdark.decentxml
Subinterfaces of Node in de.pdark.decentxml Modifier and Type Interface Description interfaceChildThis is an interface for anything which can be a child.interfaceParentThis is an interface for anything which can be a parent:ElementandDocument.Classes in de.pdark.decentxml that implement Node Modifier and Type Class Description classAttributeThis class represents an attribute of anElementclassBasicNodeThe parent class for all nodes in the XML document.classCommentclassDocumentThis class represents an XML document.classElementAn element in a XML document.classEntityclassNodeWithChildrenThis class contains all the code necessary to implement nodes which can have child nodes (like Document or Element).classProcessingInstructionclassTextclassXMLDeclarationThis class allows to manipulate the XML encoding at the beginning of an XML document.Fields in de.pdark.decentxml declared as Node Modifier and Type Field Description protected NodeXMLWriter. currentMethods in de.pdark.decentxml that return Node Modifier and Type Method Description NodeNode. copy()Simulate clone()NodeNode. copy(Node orig)Copy all data fromorigintothisprotected NodeXMLParser. createAttribute(Token token)protected NodeXMLParser. createCData(Token token)NodeNode. createClone()Simulate clone()protected NodeXMLParser. createComment(Token token)protected NodeXMLParser. createDocTypeText(Token token)protected NodeXMLParser. createElement(Token token)protected NodeXMLParser. createElementWhitespace(Token token)protected NodeXMLParser. createEntity(Token token)protected NodeXMLParser. createProcessingInstruction(Token token)protected NodeXMLParser. createText(Token token)NodeNodeWithChildren. getNode(int index)NodeParent. getNode(int index)Get a specific node from the listNodeXMLParseException. getNode()NodeTreeIterator. next()NodeDocument. removeNode(int index)NodeNodeWithChildren. removeNode(int index)NodeParent. removeNode(int index)Remove a node from the listNodeTextNode. setText(java.lang.String text)Change the text of the node.protected NodeXMLParser. toNode(Token token)This turns a token into a node.NodeNode. toXML(XMLWriter writer)Fast way to convert many nodes to XMLMethods in de.pdark.decentxml that return types with arguments of type Node Modifier and Type Method Description java.util.List<Node>NodeWithChildren. getNodes()java.util.List<Node>Parent. getNodes()Get the list of child nodes.Methods in de.pdark.decentxml with parameters of type Node Modifier and Type Method Description DocumentDocument. addNode(int index, Node node)DocumentDocument. addNode(Node node)ElementElement. addNode(int index, Node node)ElementElement. addNode(Node node)NodeWithChildrenNodeWithChildren. addNode(int index, Node node)NodeWithChildrenNodeWithChildren. addNode(Node node)ParentParent. addNode(int index, Node node)ParentParent. addNode(Node node)DocumentDocument. addNodes(int index, Node... nodes)DocumentDocument. addNodes(Node... nodes)ElementElement. addNodes(int index, Node... nodes)ElementElement. addNodes(Node... nodes)NodeWithChildrenNodeWithChildren. addNodes(int index, Node... nodes)NodeWithChildrenNodeWithChildren. addNodes(Node... nodes)ParentParent. addNodes(int index, Node... nodes)ParentParent. addNodes(Node... nodes)AttributeAttribute. copy(Node orig)BasicNodeBasicNode. copy(Node orig)DocumentDocument. copy(Node orig)ElementElement. copy(Node orig)EntityEntity. copy(Node orig)NodeNode. copy(Node orig)Copy all data fromorigintothisNodeWithChildrenNodeWithChildren. copy(Node orig)ProcessingInstructionProcessingInstruction. copy(Node orig)BasicNodeText. copy(Node orig)XMLDeclarationXMLDeclaration. copy(Node orig)static booleanXMLUtils. isAttribute(Node n)static booleanXMLUtils. isElement(Node n)static booleanXMLUtils. isText(Node n)booleanNodeFilter. matches(Node n)intNodeWithChildren. nodeIndexOf(Node node)intParent. nodeIndexOf(Node node)The index of the node in the node list or -1 if it isn't in the listbooleanDocument. removeNode(Node n)booleanNodeWithChildren. removeNode(Node n)booleanParent. removeNode(Node node)Remove a node from the listvoidXMLParseException. setNode(Document doc, Node node)static java.lang.StringBasicNode. toXML(Node n)Helper method forString toXML()to handle theIOExceptionthatStringWriterwill never throw.voidXMLWriter. write(Node node, java.lang.String s)If you want to see every node written to the underlying writer, this is the place.voidXMLWriter. writeAttributeValue(Node node, java.lang.String value, char quoteChar)Method parameters in de.pdark.decentxml with type arguments of type Node Modifier and Type Method Description DocumentDocument. addNodes(int index, java.util.Collection<? extends Node> nodes)DocumentDocument. addNodes(java.util.Collection<? extends Node> nodes)ElementElement. addNodes(int index, java.util.Collection<? extends Node> nodes)ElementElement. addNodes(java.util.Collection<? extends Node> nodes)NodeWithChildrenNodeWithChildren. addNodes(int index, java.util.Collection<? extends Node> nodes)NodeWithChildrenNodeWithChildren. addNodes(java.util.Collection<? extends Node> nodes)ParentParent. addNodes(int index, java.util.Collection<? extends Node> nodes)ParentParent. addNodes(java.util.Collection<? extends Node> nodes)Constructors in de.pdark.decentxml with parameters of type Node Constructor Description Document(Node... nodes)Location(Document document, Node node)XMLParseException(java.lang.String message, Document doc, Node node)XMLParseException(java.lang.String message, Node node) -
Uses of Node in de.pdark.decentxml.dtd
Classes in de.pdark.decentxml.dtd that implement Node Modifier and Type Class Description classDocTypeclassDocTypeAttributeListclassDocTypeElementclassDocTypeEntityclassDocTypeNotationclassDocTypeTextMethods in de.pdark.decentxml.dtd that return types with arguments of type Node Modifier and Type Method Description java.util.List<Node>DocTypeEntity. getNodes()Methods in de.pdark.decentxml.dtd with parameters of type Node Modifier and Type Method Description voidDocType. add(Node n)DocTypeAttributeListDocTypeAttributeList. addNode(Node node)DocTypeEntityDocTypeEntity. addNode(Node node)DocTypeNodeDocTypeNode. addNode(Node node)DocTypeNotationDocTypeNotation. addNode(Node node) -
Uses of Node in de.pdark.decentxml.mapping
Methods in de.pdark.decentxml.mapping with parameters of type Node Modifier and Type Method Description voidAbstractNodeHandler. handle(Node node)voidINodeHandler. handle(Node node)voidNoParametersHandler. handle(Node node)voidNopHandler. handle(Node node)abstract voidAbstractNodeHandler. invoke(Node node)voidComplexElementHandler. invoke(Node node)voidTextHandlerFactory.StringTextHandler. invoke(Node node)voidTextHandlerFactory.TextObjectTextHandler. invoke(Node node)
-