Uses of Class
tuwien.auto.calimero.xml.KNXMLException

Packages that use KNXMLException
tuwien.auto.calimero Base package of the Calimero library. 
tuwien.auto.calimero.datapoint Contains a representation for KNX datapoints, for state based datapoints as well as for command based datapoints. 
tuwien.auto.calimero.xml Provides a simple interface for reading and writing XML documents. 
tuwien.auto.calimero.xml.def A default implementation of the XML interfaces. 
 

Uses of KNXMLException in tuwien.auto.calimero
 

Methods in tuwien.auto.calimero that throw KNXMLException
static KNXAddress KNXAddress.create(XMLReader r)
          Creates a KNX address from xml input.
 void KNXAddress.save(XMLWriter w)
          Writes the KNX address in XML format to the supplied writer.
 

Constructors in tuwien.auto.calimero that throw KNXMLException
GroupAddress(XMLReader r)
          Creates a KNX group address from XML input.
IndividualAddress(XMLReader r)
          Creates a KNX individual address from xml input.
 

Uses of KNXMLException in tuwien.auto.calimero.datapoint
 

Methods in tuwien.auto.calimero.datapoint that throw KNXMLException
static Datapoint Datapoint.create(XMLReader r)
          Creates a new datapoint from XML input.
 void DatapointModel.load(XMLReader r)
          Loads a datapoint model from XML input into this model.
 void DatapointMap.load(XMLReader r)
           
 void DatapointModel.save(XMLWriter w)
          Saves the datapoint model to XML using the supplied writer.
 void DatapointMap.save(XMLWriter w)
           
 void Datapoint.save(XMLWriter w)
          Saves this datapoint in XML format to the supplied XML writer.
 

Constructors in tuwien.auto.calimero.datapoint that throw KNXMLException
CommandDP(XMLReader r)
          Creates a new command based datapoint from XML input.
StateDP(XMLReader r)
          Creates a new state based datapoint from XML input.
 

Uses of KNXMLException in tuwien.auto.calimero.xml
 

Methods in tuwien.auto.calimero.xml that throw KNXMLException
 void XMLWriter.close()
          Closes this XML writer.
 void XMLReader.close()
          Closes this XML reader.
 void XMLReader.complete(Element e)
          Reads until end of element e.
 XMLReader XMLFactory.createXMLReader(java.lang.String systemID)
          Creates a XMLReader to read the XML resource located by the specified identifier.
 XMLWriter XMLFactory.createXMLWriter(java.lang.String systemID)
          Creates a XMLWriter to write into the XML resource located by the specified identifier.
 void XMLWriter.endAllElements()
          Closes all open elements and flushes buffered data to output.
 void XMLWriter.endElement()
          Closes the current element.
 java.io.Reader EntityResolver.getInputReader(java.io.InputStream is)
          Creates an Reader using the supplied input stream.
 int XMLReader.read()
          Reads to the next XML element tag, a CDATA section or character data.
 java.io.InputStream EntityResolver.resolveInput(java.lang.String systemID)
          Resolves the system identifier for a XML resource and wraps it into an input stream.
 java.io.OutputStream EntityResolver.resolveOutput(java.lang.String systemID)
          Resolves the system identifier for a XML resource and wraps it into an output stream.
 void XMLWriter.writeCharData(java.lang.String text, boolean isCDATASection)
          Writes character data to the current position in a document.
 void XMLWriter.writeComment(java.lang.String comment)
          Writes a comment to the current position in a document.
 void XMLWriter.writeDeclaration(boolean standalone, java.lang.String encoding)
          Writes the XML declaration, specifying standalone document declaration and encoding declaration.
 void XMLWriter.writeElement(java.lang.String name, java.util.List att, java.lang.String text)
          Writes a new element to the current position in a document.
 void XMLWriter.writeEmptyElement(java.lang.String name, java.util.List att)
          Writes an empty element tag to the current position in a document.
 

Uses of KNXMLException in tuwien.auto.calimero.xml.def
 

Methods in tuwien.auto.calimero.xml.def that throw KNXMLException
 void DefaultXMLWriter.close()
           
 void DefaultXMLReader.close()
           
 void DefaultXMLReader.complete(Element e)
           
 void DefaultXMLWriter.endAllElements()
           
 void DefaultXMLWriter.endElement()
           
 java.io.Reader DefaultEntityResolver.getInputReader(java.io.InputStream is)
           
 int DefaultXMLReader.read()
           
 java.io.InputStream DefaultEntityResolver.resolveInput(java.lang.String systemID)
           
 java.io.OutputStream DefaultEntityResolver.resolveOutput(java.lang.String systemID)
           
 void DefaultXMLWriter.writeCharData(java.lang.String text, boolean isCDATASection)
           
 void DefaultXMLWriter.writeComment(java.lang.String comment)
           
 void DefaultXMLWriter.writeDeclaration(boolean standalone, java.lang.String encoding)
           
 void DefaultXMLWriter.writeElement(java.lang.String name, java.util.List att, java.lang.String content)
           
 void DefaultXMLWriter.writeEmptyElement(java.lang.String name, java.util.List att)