Package pulse.io.export
Class XMLConverter
- java.lang.Object
-
- pulse.io.export.XMLConverter
-
public class XMLConverter extends Object
Used to read and write XML files containing information about the defaultNumericPropert
ies. Is invoked at program start to retrieve the information XML file in the resource folder.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static List<NumericProperty>
readDefaultXML()
The default XML file is specific in the 'messages.properties' text file in thepulse.ui
packagestatic List<NumericProperty>
readXML(InputStream inputStream)
Utility method used to readNumericProperty
constants fromxml
files.static void
writeXML()
Utility method that creates an.xml
file listing all public final static instances ofNumericProperty
found in theNumericProperty
class.
-
-
-
Method Detail
-
writeXML
public static void writeXML() throws ParserConfigurationException, TransformerException
Utility method that creates an.xml
file listing all public final static instances ofNumericProperty
found in theNumericProperty
class.
-
readXML
public static List<NumericProperty> readXML(InputStream inputStream) throws ParserConfigurationException, SAXException, IOException
Utility method used to readNumericProperty
constants fromxml
files.- Parameters:
inputStream
- the input stream used to read data from.- Returns:
- a list of
NumericProperty
objects with their attributes specified in thexml
file. - Throws:
ParserConfigurationException
SAXException
IOException
-
readDefaultXML
public static List<NumericProperty> readDefaultXML()
The default XML file is specific in the 'messages.properties' text file in thepulse.ui
package- Returns:
- a list of default instances of
NumericProperty
.
-
-