You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ke...@locus.apache.org on 2000/08/09 06:28:58 UTC

cvs commit: xml-fop/src/org/apache/fop/dom/svg SVGElementImpl.java

keiron      00/08/08 21:28:58

  Modified:    src/org/apache/fop/dom/svg SVGElementImpl.java
  Log:
  a comment about the ElementImpl super class
  
  Revision  Changes    Path
  1.4       +7 -2      xml-fop/src/org/apache/fop/dom/svg/SVGElementImpl.java
  
  Index: SVGElementImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/dom/svg/SVGElementImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SVGElementImpl.java	2000/07/18 05:39:45	1.3
  +++ SVGElementImpl.java	2000/08/09 04:28:58	1.4
  @@ -1,4 +1,4 @@
  -/*-- $Id: SVGElementImpl.java,v 1.3 2000/07/18 05:39:45 keiron Exp $ --
  +/*-- $Id: SVGElementImpl.java,v 1.4 2000/08/09 04:28:58 keiron Exp $ --
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -309,7 +309,12 @@
   	}
   }
   
  -public abstract class SVGElementImpl extends ElementImpl implements GraphicImpl, SVGElement {
  +/*
  +I want to use
  +org.apache.xerces.dom.ElementImpl
  +but it causes an null pointer exception in appendChild
  +*/
  +public abstract class SVGElementImpl extends ElementImpl/*org.apache.xerces.dom.ElementImpl*/ implements GraphicImpl, SVGElement {
   	String idString = "";
   
   	public String getId()