venu        2003/09/23 07:01:44

  Modified:    java/src/org/apache/xerces/dom Tag: jaxp-1_3_0-branch
                        CoreDOMImplementationImpl.java
  Log:
  Description : Checkingin patch from [EMAIL PROTECTED]
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.26.2.1  +13 -1     
xml-xerces/java/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java
  
  Index: CoreDOMImplementationImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java,v
  retrieving revision 1.26
  retrieving revision 1.26.2.1
  diff -u -r1.26 -r1.26.2.1
  --- CoreDOMImplementationImpl.java    30 Jul 2003 10:30:35 -0000      1.26
  +++ CoreDOMImplementationImpl.java    23 Sep 2003 14:01:44 -0000      1.26.2.1
  @@ -68,6 +68,7 @@
   import org.w3c.dom.ls.DOMParser;
   import org.w3c.dom.ls.DOMImplementationLS;
   import org.w3c.dom.ls.DOMInput;
  +import org.w3c.dom.ls.DOMOutput;
   import org.w3c.dom.ls.DOMSerializer;
   /**
    * The DOMImplementation class is description of a particular
  @@ -381,6 +382,7 @@
        public DOMInput createDOMInput() {
                return new DOMInputImpl();
        }
  +        
        //
        // Protected methods
        //
  @@ -428,5 +430,15 @@
               return ++docAndDoctypeCounter;
          }
   
  +    /* DOM Level 3 WD - Experimental.
  +     * 
  +     * Create a new empty output source.
  +     * @return  The newly created output object.
  +     * - Gopal Sharma
  +     * TODO: Real wording should be collected from W3C next LS
  +     */
  +       public DOMOutput createDOMOutput() {
  +           return new DOMOutputImpl();
  +       }       
       
   } // class DOMImplementationImpl
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to