|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object | +--com.bankframe.ei.xml.EDocumentBuilder
This class is used to create an XML Document object from either an InputSource, a DataPacket, or a Vector of DataPackets
| Method Summary | |
boolean |
isIgnoringComments()
This method indicates whether or not the builder is configured to produce parsers which ignores comments |
boolean |
isIgnoringElementContentWhiteSpace()
This method indicates whether or not this builder is configured to produce parsers which ignore ignorable whitespace in element content. |
boolean |
isNameSpaceAware()
This method indicates whether or not the builder is configured to produce parsers which are namespace aware. |
boolean |
isValidating()
This method ndicates whether or not the bulider is configured to produce parsers which validate the XML content during parse. |
org.w3c.dom.Document |
newDocument()
This method creates a new XML Document object for creating DOM elements. |
org.w3c.dom.Document |
parse(DataPacket dp)
This method parses a DataPacket into an XML Document object. |
org.w3c.dom.Document |
parse(org.xml.sax.InputSource inSource)
This method parses an input stream into an XML Document object. |
org.w3c.dom.Document |
parse(java.util.Vector vec)
This method parses a Vector of DataPackets into an XML Document object. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
public boolean isIgnoringComments()
public boolean isIgnoringElementContentWhiteSpace()
public boolean isNameSpaceAware()
public boolean isValidating()
public org.w3c.dom.Document newDocument()
public org.w3c.dom.Document parse(DataPacket dp)
throws javax.xml.parsers.ParserConfigurationException
javax.xml.parsers.ParserConfigurationException - if errors occur creating the parser from a DocumentBuilder
public org.w3c.dom.Document parse(java.util.Vector vec)
throws javax.xml.parsers.ParserConfigurationException
javax.xml.parsers.ParserConfigurationException - is thrown if there are errors creating
the DocumentBuilder and configuring the parser
public org.w3c.dom.Document parse(org.xml.sax.InputSource inSource)
throws java.io.IOException,
org.xml.sax.SAXException,
javax.xml.parsers.ParserConfigurationException
jaxp.properties
file, as specified in the javax.xml.DocumentBuilder specification.
java.io.IOException - if there are IO errors.
org.xml.sax.SAXException - if there are errors parsing the input source into a Document.
javax.xml.parsers.ParserConfigurationException - if there are errors configuring the parser.
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||