org.apache.xerces.jaxp

Class DocumentBuilderFactoryImpl

public class DocumentBuilderFactoryImpl extends DocumentBuilderFactory

Version: $Id: DocumentBuilderFactoryImpl.java,v 1.20 2005/06/21 15:13:07 mrglavas Exp $

Author: Rajiv Mordani Edwin Goei

Method Summary
ObjectgetAttribute(String name)
Allows the user to retrieve specific attributes on the underlying implementation.
booleangetFeature(String name)
SchemagetSchema()
booleanisXIncludeAware()
DocumentBuildernewDocumentBuilder()
Creates a new instance of a {@link javax.xml.parsers.DocumentBuilder} using the currently configured parameters.
voidsetAttribute(String name, Object value)
Allows the user to set specific attributes on the underlying implementation.
voidsetFeature(String name, boolean value)
voidsetSchema(Schema grammar)
voidsetXIncludeAware(boolean state)

Method Detail

getAttribute

public Object getAttribute(String name)
Allows the user to retrieve specific attributes on the underlying implementation.

getFeature

public boolean getFeature(String name)

getSchema

public Schema getSchema()

isXIncludeAware

public boolean isXIncludeAware()

newDocumentBuilder

public DocumentBuilder newDocumentBuilder()
Creates a new instance of a {@link javax.xml.parsers.DocumentBuilder} using the currently configured parameters.

setAttribute

public void setAttribute(String name, Object value)
Allows the user to set specific attributes on the underlying implementation.

Parameters: name name of attribute value null means to remove attribute

setFeature

public void setFeature(String name, boolean value)

setSchema

public void setSchema(Schema grammar)

setXIncludeAware

public void setXIncludeAware(boolean state)
Copyright © 1999-2005 Apache XML Project. All Rights Reserved.