|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.bankframe.ei.xml.EDocumentBuilder
public class 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. |
Document |
newDocument()
This method creates a new XML Document object for creating DOM elements. |
Document |
parse(DataPacket dp)
This method parses a DataPacket into an XML Document object. |
Document |
parse(InputSource inSource)
This method parses an input stream into an XML Document object. |
Document |
parse(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 Document newDocument()
public Document parse(DataPacket dp)
throws ParserConfigurationException
ParserConfigurationException - if errors occur creating the parser from a DocumentBuilder
public Document parse(Vector vec)
throws ParserConfigurationException
ParserConfigurationException - is thrown if there are errors creating
the DocumentBuilder and configuring the parser
public Document parse(InputSource inSource)
throws IOException,
SAXException,
ParserConfigurationException
jaxp.properties
file, as specified in the javax.xml.DocumentBuilder specification.
IOException - if there are IO errors.
SAXException - if there are errors parsing the input source into a Document.
ParserConfigurationException - if there are errors configuring the parser.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||