Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

gnu.xml.dom
Class JAXPFactory  view JAXPFactory download JAXPFactory.java

java.lang.Object
  extended byjavax.xml.parsers.DocumentBuilderFactory
      extended bygnu.xml.dom.JAXPFactory

public final class JAXPFactory
extends javax.xml.parsers.DocumentBuilderFactory

DOM bootstrapping API, for use with JAXP.


Nested Class Summary
(package private) static class JAXPFactory.JAXPBuilder
           
 
Field Summary
private static java.lang.String FEATURE
           
private  javax.xml.parsers.SAXParserFactory pf
           
private static java.lang.String PROPERTY
           
private  boolean secureProcessing
           
 
Fields inherited from class javax.xml.parsers.DocumentBuilderFactory
 
Constructor Summary
JAXPFactory()
          Default constructor.
 
Method Summary
 java.lang.Object getAttribute(java.lang.String name)
          There seems to be no useful specification for attribute names
 boolean getFeature(java.lang.String name)
          Returns the value of the specified feature.
 javax.xml.parsers.DocumentBuilder newDocumentBuilder()
          Constructs a JAXP document builder which uses the default JAXP SAX2 parser and the DOM implementation in this package.
 void setAttribute(java.lang.String name, java.lang.Object value)
          There seems to be no useful specification for attribute names
 void setFeature(java.lang.String name, boolean value)
          Sets the value of the specified feature.
 
Methods inherited from class javax.xml.parsers.DocumentBuilderFactory
getSchema, isCoalescing, isExpandEntityReferences, isIgnoringComments, isIgnoringElementContentWhitespace, isNamespaceAware, isValidating, isXIncludeAware, newInstance, setCoalescing, setExpandEntityReferences, setIgnoringComments, setIgnoringElementContentWhitespace, setNamespaceAware, setSchema, setValidating, setXIncludeAware
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PROPERTY

private static final java.lang.String PROPERTY
See Also:
Constant Field Values

FEATURE

private static final java.lang.String FEATURE
See Also:
Constant Field Values

pf

private javax.xml.parsers.SAXParserFactory pf

secureProcessing

private boolean secureProcessing
Constructor Detail

JAXPFactory

public JAXPFactory()
Default constructor.

Method Detail

newDocumentBuilder

public javax.xml.parsers.DocumentBuilder newDocumentBuilder()
                                                     throws javax.xml.parsers.ParserConfigurationException
Constructs a JAXP document builder which uses the default JAXP SAX2 parser and the DOM implementation in this package.


setAttribute

public void setAttribute(java.lang.String name,
                         java.lang.Object value)
                  throws java.lang.IllegalArgumentException
There seems to be no useful specification for attribute names


getAttribute

public java.lang.Object getAttribute(java.lang.String name)
                              throws java.lang.IllegalArgumentException
There seems to be no useful specification for attribute names


setFeature

public void setFeature(java.lang.String name,
                       boolean value)
                throws javax.xml.parsers.ParserConfigurationException
Description copied from class: javax.xml.parsers.DocumentBuilderFactory
Sets the value of the specified feature.


getFeature

public boolean getFeature(java.lang.String name)
                   throws javax.xml.parsers.ParserConfigurationException
Description copied from class: javax.xml.parsers.DocumentBuilderFactory
Returns the value of the specified feature.