org.w3c.dom
Interface DOMConfiguration


public interface DOMConfiguration

The DOMConfiguration interface represents the configuration of a document and maintains a table of recognized parameters.

Since:
DOM Level 3

Method Summary
 boolean canSetParameter(java.lang.String name, java.lang.Object value)
          Check if setting a parameter to a specific value is supported.
 java.lang.Object getParameter(java.lang.String name)
          Return the value of a parameter if known.
 DOMStringList (src) getParameterNames()
          The list of the parameters supported by this DOMConfiguration object and for which at least one value can be set by the application.
 void setParameter(java.lang.String name, java.lang.Object value)
          Set the value of a parameter.
 

Method Detail

setParameter

public void setParameter(java.lang.String name,
                         java.lang.Object value)
                  throws org.w3c.dom.DOMException
Set the value of a parameter.

Throws:
org.w3c.dom.DOMException

getParameter

public java.lang.Object getParameter(java.lang.String name)
                              throws org.w3c.dom.DOMException
Return the value of a parameter if known.

Throws:
org.w3c.dom.DOMException

canSetParameter

public boolean canSetParameter(java.lang.String name,
                               java.lang.Object value)
Check if setting a parameter to a specific value is supported.


getParameterNames

public DOMStringList (src)  getParameterNames()
The list of the parameters supported by this DOMConfiguration object and for which at least one value can be set by the application. Note that this list can also contain parameter names defined outside this specification.