You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2007/02/22 20:46:53 UTC

svn commit: r510635 - /xerces/java/trunk/docs/faq-dom.xml

Author: mrglavas
Date: Thu Feb 22 11:46:52 2007
New Revision: 510635

URL: http://svn.apache.org/viewvc?view=rev&rev=510635
Log:
Fixing the imports in a couple of the DOM examples:
org.w3c.dom.DOMImplementationRegistry -> org.w3c.dom.bootstrap.DOMImplementationRegistry

Modified:
    xerces/java/trunk/docs/faq-dom.xml

Modified: xerces/java/trunk/docs/faq-dom.xml
URL: http://svn.apache.org/viewvc/xerces/java/trunk/docs/faq-dom.xml?view=diff&rev=510635&r1=510634&r2=510635
==============================================================================
--- xerces/java/trunk/docs/faq-dom.xml (original)
+++ xerces/java/trunk/docs/faq-dom.xml Thu Feb 22 11:46:52 2007
@@ -69,7 +69,7 @@
       <p>  
 	The following source code shows how to create the parser using <jump href="http://www.w3.org/DOM/DOMTR#DOML3">DOM Level 3</jump>:
       </p>
-      <source>import  org.w3c.dom.DOMImplementationRegistry;
+      <source>import  org.w3c.dom.bootstrap.DOMImplementationRegistry;
 import  org.w3c.dom.Document;
 import  org.w3c.dom.ls.DOMImplementationLS;
 import  org.w3c.dom.ls.LSParser;
@@ -98,7 +98,7 @@
 	<code>LSSerializer</code> performs automatic namespace fixup to make your document namespace
 	well-formed.
       </p>
-      <source>import  org.w3c.dom.DOMImplementationRegistry;
+      <source>import  org.w3c.dom.bootstrap.DOMImplementationRegistry;
 import  org.w3c.dom.Document;
 import  org.w3c.dom.ls.DOMImplementationLS;
 import  org.w3c.dom.ls.LSSerializer;



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org