|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjas.io.XMLManipulator
public class XMLManipulator
A collection of methods to easly manipulate XML documents. All methods are static.
Title: JAS
Description: Java Agent-based Simulation library
Copyright (C) 2002 Michele Sonnessa
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
Constructor Summary | |
---|---|
XMLManipulator()
|
Method Summary | |
---|---|
static Jama.Matrix |
extractMatrix(org.w3c.dom.Node rootNode,
java.lang.String matrixId)
Extract the content of a matrix from a given XML node. |
static org.w3c.dom.Attr |
getAttribute(org.w3c.dom.Node node,
java.lang.String attribName)
Return the attribute node with given name, attribute of node parameter. |
static java.lang.String |
getAttributeValue(org.w3c.dom.Node node,
java.lang.String attribName)
Return the attribute node with given name, child of node parameter. |
static org.w3c.dom.Element |
getElement(org.w3c.dom.Node rootNode,
java.lang.String elementName)
Return an element node searching inside the rootNode structure. |
static java.lang.String |
getElementValue(org.w3c.dom.Node node)
Return the value of a node. |
static java.lang.String |
getElementValue(org.w3c.dom.Node rootNode,
java.lang.String elementName)
Return the value of an element node part of the rootNode structure. |
static org.w3c.dom.Element |
getElementWithAttributeValue(org.w3c.dom.NodeList list,
java.lang.String attribName,
java.lang.String attribValue)
Return the element whose specific attribute has a specific value. |
static org.w3c.dom.Document |
getNewDocument()
Create a empty XML document structure. |
static org.w3c.dom.Element |
insertElement(org.w3c.dom.Document document,
org.w3c.dom.Node rootNode,
java.lang.String elementName)
Insert a new node. |
static org.w3c.dom.Element |
insertMatrix(org.w3c.dom.Document document,
org.w3c.dom.Node rootNode,
Jama.Matrix mat,
java.lang.String matrixId)
Save a Jama.Matrix matrix in a given node of the XML document. |
static org.w3c.dom.Document |
parseXML(java.io.File file)
Load an XML file and parse its content. |
static boolean |
saveXML(org.w3c.dom.Document document,
java.io.File toFile)
Save the given document to a file. |
static org.w3c.dom.Attr |
setAttributeValue(org.w3c.dom.Document document,
org.w3c.dom.Node node,
java.lang.String attribName,
java.lang.String value)
Set the attribute value of a given node. |
static org.w3c.dom.Element |
setElementValue(org.w3c.dom.Document document,
org.w3c.dom.Node node,
java.lang.String value)
Set the value of a given element. |
static org.w3c.dom.Element |
setElementValue(org.w3c.dom.Document document,
org.w3c.dom.Node rootNode,
java.lang.String elementName,
java.lang.String value)
Set the element value of a given node. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public XMLManipulator()
Method Detail |
---|
public static Jama.Matrix extractMatrix(org.w3c.dom.Node rootNode, java.lang.String matrixId)
rootNode
- The parent node where the matrix is stored.matrixId
- A String-based unique identifier for a matrix in the XML file.
NoSuchElementException
- If no matrix with the given id is present into the XML file.public static org.w3c.dom.Attr getAttribute(org.w3c.dom.Node node, java.lang.String attribName)
node
- The node of the attribute to search.attribName
- The tag name of the attribute.
public static java.lang.String getAttributeValue(org.w3c.dom.Node node, java.lang.String attribName)
node
- The node of the attribute to search.attribName
- The tag name of the attribute.
public static org.w3c.dom.Element getElement(org.w3c.dom.Node rootNode, java.lang.String elementName)
rootNode
- The starting root node in search.elementName
- The tag name of the element.
public static java.lang.String getElementValue(org.w3c.dom.Node node)
node
- The node whose child contains a data value.
public static java.lang.String getElementValue(org.w3c.dom.Node rootNode, java.lang.String elementName)
rootNode
- The starting root node in search.elementName
- The tag name of the element.
public static org.w3c.dom.Element getElementWithAttributeValue(org.w3c.dom.NodeList list, java.lang.String attribName, java.lang.String attribValue)
list
- The nodelist to scan.attribName
- The tag name of the attribute.attribValue
- The value to compare.
public static org.w3c.dom.Document getNewDocument()
public static org.w3c.dom.Element insertElement(org.w3c.dom.Document document, org.w3c.dom.Node rootNode, java.lang.String elementName)
document
- The document to edit.rootNode
- The root node of the new node.elementName
- The tag of the new element.
public static org.w3c.dom.Element insertMatrix(org.w3c.dom.Document document, org.w3c.dom.Node rootNode, Jama.Matrix mat, java.lang.String matrixId)
document
- The XML document.rootNode
- The parent node where the matrix is stored.mat
- Is the Jama.Matrix object to be stored in the XML format.matrixId
- A String-based unique identifier for a matrix in the XML file.
public static org.w3c.dom.Document parseXML(java.io.File file)
file
- The XML file to parse.
public static boolean saveXML(org.w3c.dom.Document document, java.io.File toFile)
document
- An XML document to save.toFile
- The target file.
public static org.w3c.dom.Attr setAttributeValue(org.w3c.dom.Document document, org.w3c.dom.Node node, java.lang.String attribName, java.lang.String value)
document
- The document to edit.node
- The node of the attribute to search.attribName
- The tag name of the attribute.value
- The value to set.
public static org.w3c.dom.Element setElementValue(org.w3c.dom.Document document, org.w3c.dom.Node node, java.lang.String value)
document
- The document to edit.node
- The node to set.value
- The value to set.
public static org.w3c.dom.Element setElementValue(org.w3c.dom.Document document, org.w3c.dom.Node rootNode, java.lang.String elementName, java.lang.String value)
document
- The document to edit.rootNode
- The root node of the element to search.elementName
- The tag name of the element.value
- The value to set.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |