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/07/12 02:03:27 UTC

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

keiron      00/07/11 17:03:27

  Modified:    src/org/apache/fop/dom/svg SVGDocumentImpl.java
  Log:
  added method createAttributeNS to make sure it compiles properly
  
  Revision  Changes    Path
  1.2       +8 -1      xml-fop/src/org/apache/fop/dom/svg/SVGDocumentImpl.java
  
  Index: SVGDocumentImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/dom/svg/SVGDocumentImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SVGDocumentImpl.java	2000/07/11 00:46:51	1.1
  +++ SVGDocumentImpl.java	2000/07/12 00:03:27	1.2
  @@ -1,4 +1,4 @@
  -/*-- $Id: SVGDocumentImpl.java,v 1.1 2000/07/11 00:46:51 keiron Exp $ -- 
  +/*-- $Id: SVGDocumentImpl.java,v 1.2 2000/07/12 00:03:27 keiron Exp $ -- 
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -149,6 +149,13 @@
   	{
   		return null;
   	}
  +
  +    public Attr createAttributeNS(String namespaceURI, 
  +                                  String qualifiedName)
  +                                  throws DOMException
  +    {
  +		return null;
  +    }
   
   	public Element getDocumentElement()
   	{