You are viewing a plain text version of this content. The canonical link for it is here.
Posted to crimson-cvs@xml.apache.org by ed...@apache.org on 2001/05/22 04:15:05 UTC

cvs commit: xml-crimson/src/org/apache/crimson/tree XmlDocument.java

edwingo     01/05/21 19:15:05

  Modified:    src/org/apache/crimson/tree XmlDocument.java
  Log:
  Make creatElement() non-final so it can be subclassed.  User request.
  
  Revision  Changes    Path
  1.9       +4 -4      xml-crimson/src/org/apache/crimson/tree/XmlDocument.java
  
  Index: XmlDocument.java
  ===================================================================
  RCS file: /home/cvs/xml-crimson/src/org/apache/crimson/tree/XmlDocument.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- XmlDocument.java	2001/03/20 00:21:55	1.8
  +++ XmlDocument.java	2001/05/22 02:15:02	1.9
  @@ -1,5 +1,5 @@
   /*
  - * $Id: XmlDocument.java,v 1.8 2001/03/20 00:21:55 edwingo Exp $
  + * $Id: XmlDocument.java,v 1.9 2001/05/22 02:15:02 edwingo Exp $
    *
    * The Apache Software License, Version 1.1
    *
  @@ -129,7 +129,7 @@
    *
    * @author David Brownell
    * @author Rajiv Mordani
  - * @version $Revision: 1.8 $
  + * @version $Revision: 1.9 $
    */
   public class XmlDocument extends ParentNode implements DocumentEx
   {
  @@ -826,8 +826,8 @@
        *  but is invalid because the element can't be instantiated or
        *  does not subclass <em>ElementNode</em>.
        */
  -    final public Element createElement (String tagName)
  -    throws DOMException
  +    public Element createElement(String tagName)
  +        throws DOMException
       {
           return createElementEx (tagName);
       }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: crimson-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: crimson-cvs-help@xml.apache.org