You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by le...@locus.apache.org on 2000/02/22 00:22:59 UTC

cvs commit: xml-xerces/java/src/org/w3c/dom DOMImplementation.java

lehors      00/02/21 15:22:59

  Modified:    java/src/org/w3c/dom DOMImplementation.java
  Log:
  the internalSubset parameter of createDocumentType has been
  dropped during DOM Level 2 CR,
  updated the code accordingly
  
  Revision  Changes    Path
  1.3       +1 -3      xml-xerces/java/src/org/w3c/dom/DOMImplementation.java
  
  Index: DOMImplementation.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/w3c/dom/DOMImplementation.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DOMImplementation.java	2000/01/06 22:00:09	1.2
  +++ DOMImplementation.java	2000/02/21 23:22:58	1.3
  @@ -44,15 +44,13 @@
        *   created. 
        * @param publicId The external subset public identifier.
        * @param systemId The external subset system identifier.
  -     * @param internalSubset The internal subset as a string. This should be 
        *   valid.
        * @return A new <code>DocumentType</code> node with 
        *   <code>Node.ownerDocument</code> set to <code>null</code>.
        */
       public DocumentType createDocumentType(String qualifiedName, 
                                              String publicId, 
  -                                           String systemId, 
  -                                           String internalSubset);
  +                                           String systemId);
       /**
        * Creates an XML <code>Document</code> object of the specified type with 
        * its document element. HTML-only DOM implementations do not need to