DOMConfiguration


DOMConfiguration org.w3c.dom

Java 5.0

This Level 3 interface defines methods for querying and setting the values of named parameters. The DOMConfiguration object obtained with the Document.getDomConfig( ) method allows you to specify parameters that affect the behavior of the Document.normalizeDocument( ) method. You can also obtain a DOMConfiguration object from the LSParser and LSSerializer interfaces of the org.w3c.dom.ls package. Those configuration objects affect the way documents are loaded and saved, but the package is beyond the scope of this book. See the DOM specification for details on the available parameters.

 public interface  DOMConfiguration  {  // Public Instance Methods  boolean  canSetParameter  (String  name  , Object  value  );        Object  getParameter  (String  name  ) throws DOMException;        DOMStringList  getParameterNames  ( );        void  setParameter  (String  name  , Object  value  ) throws DOMException;   } 

Returned By

Document.getDomConfig( )



Java In A Nutshell
Java In A Nutshell, 5th Edition
ISBN: 0596007736
EAN: 2147483647
Year: 2004
Pages: 1220

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net