Uses of Interface
com.nfbsoftware.xml.IXmlElement
Packages that use IXmlElement
-
Uses of IXmlElement in com.nfbsoftware.xml
Subinterfaces of IXmlElement in com.nfbsoftware.xmlClasses in com.nfbsoftware.xml that implement IXmlElementMethods in com.nfbsoftware.xml that return IXmlElementModifier and TypeMethodDescriptionIXmlElement.createChild(String childName) This method creates a new child under this element with an element name equal to the childName parameter.IXmlElement.createChild(String childName, String value) This method creates a new child under this element with an element name equal to the childName parameter and a value equal to the value parameter.XmlDocument.createChild(String childName) XmlDocument.createChild(String childName, String value) IXmlElement.createChildren(String fullChildPath) This method creates aall of the child elements referenced by the child path.XmlDocument.createChildren(String fullChildPath) IXmlElement.getChild(int index) This method returns an IXmlElement object that contains the child element at the given index.This method returns the first child element identified by the path.XmlDocument.getChild(int index) .IXmlDocument.getRootElement()Method getRootElement returns the root element for the xml document.XmlDocument.getRootElement()Method getRootElement returns the root element for the xml document.IXmlElement.removeChild(int index) This method removes the index-th child element.IXmlElement.removeChild(String childName) This method removes a child element.XmlDocument.removeChild(int index) This method removes the index-th child element.XmlDocument.removeChild(String childName) This method removes a child element.IXmlElement.removeChildWithXpath(String xpathQuery) This method removes a single child element with the given xpath query.XmlDocument.removeChildWithXpath(String xpathQuery) This method removes a single child element with the given xpath query.IXmlElement.replaceChild(int index, IXmlElement newChild) This method replaces the index-th element with the new element.IXmlElement.replaceChild(String childName, IXmlElement newChild) This method replaces the child element with the new element.XmlDocument.replaceChild(int index, IXmlElement newChild) This method replaces the index-th element with the new element.XmlDocument.replaceChild(String childName, IXmlElement newChild) This method replaces the child element with the new element.IXmlElement.selectChild(String xpathQuery) XmlDocument.selectChild(String xpathQuery) IXmlElement.setAttribute(String attributeName, String value) Sets the value of an attribute of this element.XmlDocument.setAttribute(String attrName, String value) Sets the value of an attribute of this element.Methods in com.nfbsoftware.xml that return types with arguments of type IXmlElementModifier and TypeMethodDescriptionIXmlElement.getChildren()This method returns all of this element's children.XmlDocument.getChildren()IXmlElement.getChildrenByName(String name) This method returns all of this element's children with the given name.XmlDocument.getChildrenByName(String name) IXmlElement.removeChildrenWithXpath(String xpathQuery) This method removes all child elements with the given xpath query.XmlDocument.removeChildrenWithXpath(String xpathQuery) This method removes all child elements with the given xpath query.IXmlElement.selectChildren(String xpathQuery) XmlDocument.selectChildren(String xpathQuery) Methods in com.nfbsoftware.xml with parameters of type IXmlElementModifier and TypeMethodDescriptionvoidIXmlElement.addChild(IXmlElement child) This appends an IXmlElement object to the this element.voidXmlDocument.addChild(IXmlElement child) voidIXmlElement.addToChild(IXmlElement child, String parent) This method appends the input IXmlElement object to the element identified by the path.voidXmlDocument.addToChild(IXmlElement child, String parent) voidIXmlElement.replaceAllChildren(IXmlElement parent) Removes all of the element's children and adds all of the children of the provided parent element.voidXmlDocument.replaceAllChildren(IXmlElement parent) Removes all of the element's children and adds all of the children of the provided parent element.IXmlElement.replaceChild(int index, IXmlElement newChild) This method replaces the index-th element with the new element.IXmlElement.replaceChild(String childName, IXmlElement newChild) This method replaces the child element with the new element.XmlDocument.replaceChild(int index, IXmlElement newChild) This method replaces the index-th element with the new element.XmlDocument.replaceChild(String childName, IXmlElement newChild) This method replaces the child element with the new element.IXslDocument.transform(IXmlElement xmlElement) This method transforms the xml document using this style sheet.XslDocument.transform(IXmlElement xmlElement) This method transforms the xml document using this style sheet.IXslDocument.transformToXmlDocument(IXmlElement xmlElement) This method transforms the xml document using this style sheet.XslDocument.transformToXmlDocument(IXmlElement xmlElement) This method transforms the xml document using this style sheet.