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 2008/04/07 01:38:19 UTC

svn commit: r645331 - in /xerces/java/trunk/src/org/apache/xerces: dom/PSVIDOMImplementationImpl.java impl/xs/XSImplementationImpl.java

Author: mrglavas
Date: Sun Apr  6 16:38:14 2008
New Revision: 645331

URL: http://svn.apache.org/viewvc?rev=645331&view=rev
Log:
Fixing the DOMImplementation class hierarchy. PSVIDocumentImpl extends DocumentImpl
so PSVIDOMImplementationImpl should extend DOMImplementationImpl. XSImplementationImpl
should extend the PSVIDOMImplementationImpl which supports all of the other DOM
features supported by Xerces-J.

Modified:
    xerces/java/trunk/src/org/apache/xerces/dom/PSVIDOMImplementationImpl.java
    xerces/java/trunk/src/org/apache/xerces/impl/xs/XSImplementationImpl.java

Modified: xerces/java/trunk/src/org/apache/xerces/dom/PSVIDOMImplementationImpl.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/dom/PSVIDOMImplementationImpl.java?rev=645331&r1=645330&r2=645331&view=diff
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/dom/PSVIDOMImplementationImpl.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/dom/PSVIDOMImplementationImpl.java Sun Apr  6 16:38:14 2008
@@ -37,7 +37,7 @@
  * @version $Id$
  * @since  PR-DOM-Level-1-19980818.
  */
-public class PSVIDOMImplementationImpl extends CoreDOMImplementationImpl {
+public class PSVIDOMImplementationImpl extends DOMImplementationImpl {
 
     //
     // Data

Modified: xerces/java/trunk/src/org/apache/xerces/impl/xs/XSImplementationImpl.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/impl/xs/XSImplementationImpl.java?rev=645331&r1=645330&r2=645331&view=diff
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/impl/xs/XSImplementationImpl.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/impl/xs/XSImplementationImpl.java Sun Apr  6 16:38:14 2008
@@ -17,8 +17,8 @@
 
 package org.apache.xerces.impl.xs;
 
-import org.apache.xerces.dom.CoreDOMImplementationImpl;
 import org.apache.xerces.dom.DOMMessageFormatter;
+import org.apache.xerces.dom.PSVIDOMImplementationImpl;
 import org.apache.xerces.impl.xs.util.StringListImpl;
 import org.apache.xerces.xs.StringList;
 import org.apache.xerces.xs.XSException;
@@ -26,7 +26,6 @@
 import org.apache.xerces.xs.XSLoader;
 import org.w3c.dom.DOMImplementation;
 
-
 /**
  * Implements XSImplementation interface that allows one to retrieve an instance of <code>XSLoader</code>. 
  * This interface should be implemented on the same object that implements 
@@ -37,7 +36,7 @@
  * @author Elena Litani, IBM
  * @version $Id$
  */
-public class XSImplementationImpl extends CoreDOMImplementationImpl 
+public class XSImplementationImpl extends PSVIDOMImplementationImpl 
  								  implements XSImplementation {
 
     //



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