You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-dev@xmlgraphics.apache.org by hi...@apache.org on 2001/09/12 18:57:08 UTC

cvs commit: xml-batik/sources/org/apache/batik/dom/svg AbstractElement.java DefaultSVGContext.java SVGDOMImplementation.java SVGGraphicsElement.java SVGOMClipPathElement.java SVGOMColorProfileElement.java SVGOMCursorElement.java SVGOMDescElement.java SVGOMDocument.java SVGOMElement.java SVGOMEllipseElement.java SVGOMFEBlendElement.java SVGOMFEColorMatrixElement.java SVGOMFEImageElement.java SVGOMFilterElement.java SVGOMFontElement.java SVGOMGlyphRefElement.java SVGOMGradientElement.java SVGOMMPathElement.java SVGOMMarkerElement.java SVGOMMaskElement.java SVGOMPatternElement.java SVGOMSVGElement.java SVGOMSymbolElement.java SVGOMTextContentElement.java SVGOMTextElement.java SVGOMURIReferenceElement.java SVGOMViewElement.java SVGStylableElement.java SVGStylableSupport.java SVGURIReferenceTextPositioningElement.java

hillion     01/09/12 09:57:08

  Modified:    sources/org/apache/batik/dom/svg AbstractElement.java
                        DefaultSVGContext.java SVGDOMImplementation.java
                        SVGGraphicsElement.java SVGOMClipPathElement.java
                        SVGOMColorProfileElement.java
                        SVGOMCursorElement.java SVGOMDescElement.java
                        SVGOMDocument.java SVGOMElement.java
                        SVGOMEllipseElement.java SVGOMFEBlendElement.java
                        SVGOMFEColorMatrixElement.java
                        SVGOMFEImageElement.java SVGOMFilterElement.java
                        SVGOMFontElement.java SVGOMGlyphRefElement.java
                        SVGOMGradientElement.java SVGOMMPathElement.java
                        SVGOMMarkerElement.java SVGOMMaskElement.java
                        SVGOMPatternElement.java SVGOMSVGElement.java
                        SVGOMSymbolElement.java
                        SVGOMTextContentElement.java SVGOMTextElement.java
                        SVGOMURIReferenceElement.java SVGOMViewElement.java
                        SVGStylableElement.java SVGStylableSupport.java
                        SVGURIReferenceTextPositioningElement.java
  Log:
  Javadoc fixes.
  
  Revision  Changes    Path
  1.2       +4 -6      xml-batik/sources/org/apache/batik/dom/svg/AbstractElement.java
  
  Index: AbstractElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/AbstractElement.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AbstractElement.java	2001/09/10 12:26:07	1.1
  +++ AbstractElement.java	2001/09/12 16:57:07	1.2
  @@ -29,7 +29,7 @@
    * an element interoperable with the SVG elements.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: AbstractElement.java,v 1.1 2001/09/10 12:26:07 hillion Exp $
  + * @version $Id: AbstractElement.java,v 1.2 2001/09/12 16:57:07 hillion Exp $
    */
   public abstract class AbstractElement
       extends org.apache.batik.dom.AbstractElement
  @@ -116,8 +116,7 @@
       }
   
       /**
  -     * Implements {@link
  -     * org.apache.batik.dom.events.NodeEventTarget#getParentNodeEventTarget()}.
  +     * Implements {@link NodeEventTarget#getParentNodeEventTarget()}.
        */
       public NodeEventTarget getParentNodeEventTarget() {
           return (NodeEventTarget)
  @@ -178,7 +177,7 @@
       }
   
       /**
  -     * An implementation of the {@link org.w3c.dom.NamedNodeMap}.
  +     * An implementation of the {@link NamedNodeMap}.
        */
       protected class ExtendedNamedNodeHashMap extends NamedNodeHashMap {
   
  @@ -202,8 +201,7 @@
   	}
   
    	/**
  -	 * <b>DOM</b>: Implements {@link
  -	 * org.w3c.dom.NamedNodeMap#removeNamedItemNS(String,String)}.
  +	 * <b>DOM</b>: Implements {@link NamedNodeMap#removeNamedItemNS(String,String)}.
   	 */
   	public Node removeNamedItemNS(String namespaceURI, String localName)
   	    throws DOMException {
  
  
  
  1.6       +1 -5      xml-batik/sources/org/apache/batik/dom/svg/DefaultSVGContext.java
  
  Index: DefaultSVGContext.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/DefaultSVGContext.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- DefaultSVGContext.java	2001/08/21 15:26:00	1.5
  +++ DefaultSVGContext.java	2001/09/12 16:57:07	1.6
  @@ -8,18 +8,14 @@
   
   package org.apache.batik.dom.svg;
   
  -import java.net.URL;
  -
  -import org.apache.batik.bridge.UserAgent;
   import org.apache.batik.css.svg.DefaultSVGCSSContext;
  -import org.apache.batik.css.svg.SVGCSSContext;
   
   
   /**
    * This class is the placeholder for SVG application informations.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: DefaultSVGContext.java,v 1.5 2001/08/21 15:26:00 hillion Exp $
  + * @version $Id: DefaultSVGContext.java,v 1.6 2001/09/12 16:57:07 hillion Exp $
    */
   public class DefaultSVGContext
       extends    DefaultSVGCSSContext
  
  
  
  1.14      +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGDOMImplementation.java
  
  Index: SVGDOMImplementation.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGDOMImplementation.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- SVGDOMImplementation.java	2001/09/10 12:26:07	1.13
  +++ SVGDOMImplementation.java	2001/09/12 16:57:07	1.14
  @@ -50,11 +50,11 @@
   import org.w3c.dom.stylesheets.StyleSheet;
   
   /**
  - * This class implements the {@link org.w3c.dom.DOMImplementation} interface.
  + * This class implements the {@link DOMImplementation} interface.
    * It provides support the SVG 1.0 documents.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGDOMImplementation.java,v 1.13 2001/09/10 12:26:07 hillion Exp $
  + * @version $Id: SVGDOMImplementation.java,v 1.14 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGDOMImplementation
       extends    AbstractDOMImplementation
  
  
  
  1.8       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGGraphicsElement.java
  
  Index: SVGGraphicsElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGGraphicsElement.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- SVGGraphicsElement.java	2001/09/10 12:26:07	1.7
  +++ SVGGraphicsElement.java	2001/09/12 16:57:07	1.8
  @@ -24,7 +24,7 @@
    * This class provides a common superclass for all graphics elements.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGGraphicsElement.java,v 1.7 2001/09/10 12:26:07 hillion Exp $
  + * @version $Id: SVGGraphicsElement.java,v 1.8 2001/09/12 16:57:07 hillion Exp $
    */
   public abstract class SVGGraphicsElement extends SVGStylableElement {
       
  @@ -109,7 +109,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link
  -     * SVGExternalResourcesRequired#getExternalResourcesRequired()}.
  +     * org.w3c.dom.svg.SVGExternalResourcesRequired#getExternalResourcesRequired()}.
        */
       public SVGAnimatedBoolean getExternalResourcesRequired() {
   	return SVGExternalResourcesRequiredSupport.
  
  
  
  1.6       +2 -3      xml-batik/sources/org/apache/batik/dom/svg/SVGOMClipPathElement.java
  
  Index: SVGOMClipPathElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMClipPathElement.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SVGOMClipPathElement.java	2001/09/10 12:26:07	1.5
  +++ SVGOMClipPathElement.java	2001/09/12 16:57:07	1.6
  @@ -20,7 +20,7 @@
    * This class implements {@link SVGClipPathElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMClipPathElement.java,v 1.5 2001/09/10 12:26:07 hillion Exp $
  + * @version $Id: SVGOMClipPathElement.java,v 1.6 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMClipPathElement
       extends    SVGGraphicsElement
  @@ -49,8 +49,7 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link
  -     * org.w3c.dom.svg.SVGGradientElement#getGradientUnits()}.
  +     * <b>DOM</b>: Implements {@link SVGClipPathElement#getClipPathUnits()}.
        */
       public SVGAnimatedEnumeration getClipPathUnits() {
           throw new RuntimeException("!!! TODO: getClipPathUnits()");
  
  
  
  1.2       +3 -3      xml-batik/sources/org/apache/batik/dom/svg/SVGOMColorProfileElement.java
  
  Index: SVGOMColorProfileElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMColorProfileElement.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SVGOMColorProfileElement.java	2001/09/10 12:26:07	1.1
  +++ SVGOMColorProfileElement.java	2001/09/12 16:57:07	1.2
  @@ -20,7 +20,7 @@
    * This class implements {@link org.w3c.dom.svg.SVGColorProfileElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMColorProfileElement.java,v 1.1 2001/09/10 12:26:07 hillion Exp $
  + * @version $Id: SVGOMColorProfileElement.java,v 1.2 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMColorProfileElement
       extends    SVGOMURIReferenceElement
  @@ -92,7 +92,7 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGColorProfileElement#getName(String)}.
  +     * <b>DOM</b>: Implements {@link SVGColorProfileElement#getName()}.
        */
       public String getName() {
           throw new RuntimeException("!!! TODO: getName()");
  @@ -113,7 +113,7 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGColorProfileElement#setRenderingIntent(String)}.
  +     * <b>DOM</b>: Implements {@link SVGColorProfileElement#setRenderingIntent(short)}.
        */
       public void setRenderingIntent(short renderingIntent) throws DOMException {
           throw new RuntimeException("!!! TODO: setRenderingIntent()");
  
  
  
  1.2       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGOMCursorElement.java
  
  Index: SVGOMCursorElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMCursorElement.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SVGOMCursorElement.java	2001/09/10 12:26:07	1.1
  +++ SVGOMCursorElement.java	2001/09/12 16:57:07	1.2
  @@ -23,7 +23,7 @@
    * This class implements {@link org.w3c.dom.svg.SVGCursorElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMCursorElement.java,v 1.1 2001/09/10 12:26:07 hillion Exp $
  + * @version $Id: SVGOMCursorElement.java,v 1.2 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMCursorElement
       extends    SVGOMURIReferenceElement
  @@ -94,7 +94,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link
  -     * SVGExternalResourcesRequired#getExternalResourcesRequired()}.
  +     * org.w3c.dom.svg.SVGExternalResourcesRequired#getExternalResourcesRequired()}.
        */
       public SVGAnimatedBoolean getExternalResourcesRequired() {
   	return SVGExternalResourcesRequiredSupport.
  
  
  
  1.4       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGOMDescElement.java
  
  Index: SVGOMDescElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMDescElement.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SVGOMDescElement.java	2001/09/10 12:26:07	1.3
  +++ SVGOMDescElement.java	2001/09/12 16:57:07	1.4
  @@ -13,10 +13,10 @@
   import org.w3c.dom.svg.SVGDescElement;
   
   /**
  - * This class implements {@link org.w3c.dom.svg.SVGDescElement}.
  + * This class implements {@link SVGDescElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMDescElement.java,v 1.3 2001/09/10 12:26:07 hillion Exp $
  + * @version $Id: SVGOMDescElement.java,v 1.4 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMDescElement
       extends    SVGDescriptiveElement
  
  
  
  1.38      +14 -23    xml-batik/sources/org/apache/batik/dom/svg/SVGOMDocument.java
  
  Index: SVGOMDocument.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMDocument.java,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- SVGOMDocument.java	2001/09/10 12:26:07	1.37
  +++ SVGOMDocument.java	2001/09/12 16:57:07	1.38
  @@ -66,10 +66,10 @@
   import org.w3c.dom.views.DocumentView;
   
   /**
  - * This class implements {@link org.w3c.dom.svg.SVGDocument}.
  + * This class implements {@link SVGDocument}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMDocument.java,v 1.37 2001/09/10 12:26:07 hillion Exp $
  + * @version $Id: SVGOMDocument.java,v 1.38 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMDocument
       extends    AbstractDocument
  @@ -234,7 +234,7 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGDocument#getURL()}
  +     * <b>DOM</b>: Implements {@link SVGDocument#getURL()}
        */
       public String getURL() {
           return (url == null) ? null : url.toString();
  @@ -255,40 +255,35 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link
  -     * org.w3c.dom.Document#createElement(String)}.
  +     * <b>DOM</b>: Implements {@link Document#createElement(String)}.
        */
       public Element createElement(String tagName) throws DOMException {
           return new GenericElement(tagName.intern(), this);
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link
  -     * org.w3c.dom.Document#createDocumentFragment()}.
  +     * <b>DOM</b>: Implements {@link Document#createDocumentFragment()}.
        */
       public DocumentFragment createDocumentFragment() {
           return new GenericDocumentFragment(this);
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link
  -     * org.w3c.dom.Document#createTextNode(String)}.
  +     * <b>DOM</b>: Implements {@link Document#createTextNode(String)}.
        */
       public Text createTextNode(String data) {
           return new GenericText(data, this);
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link
  -     * org.w3c.dom.Document#createComment(String)}.
  +     * <b>DOM</b>: Implements {@link Document#createComment(String)}.
        */
       public Comment createComment(String data) {
           return new GenericComment(data, this);
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link
  -     * org.w3c.dom.Document#createCDATASection(String)}
  +     * <b>DOM</b>: Implements {@link Document#createCDATASection(String)}
        */
       public CDATASection createCDATASection(String data) throws DOMException {
           return new GenericCDATASection(data, this);
  @@ -296,7 +291,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link
  -     * org.w3c.dom.Document#createProcessingInstruction(String,String)}.
  +     * Document#createProcessingInstruction(String,String)}.
        * @return a StyleSheetProcessingInstruction if target is
        *         "xml-stylesheet" or a GenericProcessingInstruction otherwise.
        */
  @@ -311,16 +306,14 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link
  -     * org.w3c.dom.Document#createAttribute(String)}.
  +     * <b>DOM</b>: Implements {@link Document#createAttribute(String)}.
        */
       public Attr createAttribute(String name) throws DOMException {
           return new GenericAttr(name.intern(), this);
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link
  -     * org.w3c.dom.Document#createEntityReference(String)}.
  +     * <b>DOM</b>: Implements {@link Document#createEntityReference(String)}.
        */
       public EntityReference createEntityReference(String name)
           throws DOMException {
  @@ -328,8 +321,7 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link
  -     * org.w3c.dom.Document#createAttributeNS(String,String)}.
  +     * <b>DOM</b>: Implements {@link Document#createAttributeNS(String,String)}.
        */
       public Attr createAttributeNS(String namespaceURI, String qualifiedName)
           throws DOMException {
  @@ -343,8 +335,7 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link
  -     * org.w3c.dom.Document#createElementNS(String,String)}.
  +     * <b>DOM</b>: Implements {@link Document#createElementNS(String,String)}.
        */
       public Element createElementNS(String namespaceURI, String qualifiedName)
           throws DOMException {
  @@ -353,7 +344,7 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link org.w3c.dom.Document#getElementById(String)}.
  +     * <b>DOM</b>: Implements {@link Document#getElementById(String)}.
        */
       public Element getElementById(String elementId) {
           if (elementId == null || elementId.equals("")) {
  
  
  
  1.8       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGOMElement.java
  
  Index: SVGOMElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMElement.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- SVGOMElement.java	2001/09/10 12:26:08	1.7
  +++ SVGOMElement.java	2001/09/12 16:57:07	1.8
  @@ -25,10 +25,10 @@
   import org.w3c.dom.svg.SVGSVGElement;
   
   /**
  - * This class implements the {@link org.w3c.dom.svg.SVGElement} interface.
  + * This class implements the {@link SVGElement} interface.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMElement.java,v 1.7 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMElement.java,v 1.8 2001/09/12 16:57:07 hillion Exp $
    */
   public abstract class SVGOMElement
       extends    AbstractElement
  
  
  
  1.6       +2 -3      xml-batik/sources/org/apache/batik/dom/svg/SVGOMEllipseElement.java
  
  Index: SVGOMEllipseElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMEllipseElement.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SVGOMEllipseElement.java	2001/09/10 12:26:08	1.5
  +++ SVGOMEllipseElement.java	2001/09/12 16:57:07	1.6
  @@ -17,7 +17,7 @@
    * This class implements {@link SVGEllipseElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMEllipseElement.java,v 1.5 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMEllipseElement.java,v 1.6 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMEllipseElement
       extends    SVGGraphicsElement
  @@ -67,8 +67,7 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link
  -     * org.w3c.dom.svg.SVGEllipseElement#getRy()}.
  +     * <b>DOM</b>: Implements {@link SVGEllipseElement#getRy()}.
        */
       public SVGAnimatedLength getRy() {
           throw new RuntimeException("!!! TODO: getRy()");
  
  
  
  1.6       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGOMFEBlendElement.java
  
  Index: SVGOMFEBlendElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMFEBlendElement.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SVGOMFEBlendElement.java	2001/09/10 12:26:08	1.5
  +++ SVGOMFEBlendElement.java	2001/09/12 16:57:07	1.6
  @@ -17,10 +17,10 @@
   import org.w3c.dom.svg.SVGFEBlendElement;
   
   /**
  - * This class implements {@link org.w3c.dom.svg.SVGFEBlendElement}.
  + * This class implements {@link SVGFEBlendElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMFEBlendElement.java,v 1.5 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMFEBlendElement.java,v 1.6 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMFEBlendElement
       extends    SVGOMFilterPrimitiveStandardAttributes
  
  
  
  1.5       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGOMFEColorMatrixElement.java
  
  Index: SVGOMFEColorMatrixElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMFEColorMatrixElement.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SVGOMFEColorMatrixElement.java	2001/09/10 12:26:08	1.4
  +++ SVGOMFEColorMatrixElement.java	2001/09/12 16:57:07	1.5
  @@ -18,10 +18,10 @@
   import org.w3c.dom.svg.SVGFEColorMatrixElement;
   
   /**
  - * This class implements {@link org.w3c.dom.svg.SVGFEColorMatrixElement}.
  + * This class implements {@link SVGFEColorMatrixElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMFEColorMatrixElement.java,v 1.4 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMFEColorMatrixElement.java,v 1.5 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMFEColorMatrixElement
       extends    SVGOMFilterPrimitiveStandardAttributes
  
  
  
  1.6       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGOMFEImageElement.java
  
  Index: SVGOMFEImageElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMFEImageElement.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SVGOMFEImageElement.java	2001/09/10 12:26:08	1.5
  +++ SVGOMFEImageElement.java	2001/09/12 16:57:07	1.6
  @@ -29,7 +29,7 @@
    * This class implements {@link SVGFEImageElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMFEImageElement.java,v 1.5 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMFEImageElement.java,v 1.6 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMFEImageElement
       extends    SVGOMFilterPrimitiveStandardAttributes
  @@ -124,7 +124,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link
  -     * SVGExternalResourcesRequired#getExternalResourcesRequired()}.
  +     * org.w3c.dom.svg.SVGExternalResourcesRequired#getExternalResourcesRequired()}.
        */
       public SVGAnimatedBoolean getExternalResourcesRequired() {
   	return SVGExternalResourcesRequiredSupport.
  
  
  
  1.10      +3 -3      xml-batik/sources/org/apache/batik/dom/svg/SVGOMFilterElement.java
  
  Index: SVGOMFilterElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMFilterElement.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- SVGOMFilterElement.java	2001/09/10 12:26:08	1.9
  +++ SVGOMFilterElement.java	2001/09/12 16:57:07	1.10
  @@ -34,7 +34,7 @@
    * This class implements {@link SVGFilterElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMFilterElement.java,v 1.9 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMFilterElement.java,v 1.10 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMFilterElement
       extends    SVGStylableElement
  @@ -152,7 +152,7 @@
       // SVGURIReference support /////////////////////////////////////////////
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGURIReference#getHref()}.
  +     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGURIReference#getHref()}.
        */
       public SVGAnimatedString getHref() {
           return SVGURIReferenceSupport.getHref(this);
  @@ -162,7 +162,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link
  -     * SVGExternalResourcesRequired#getExternalResourcesRequired()}.
  +     * org.w3c.dom.svg.SVGExternalResourcesRequired#getExternalResourcesRequired()}.
        */
       public SVGAnimatedBoolean getExternalResourcesRequired() {
           return SVGExternalResourcesRequiredSupport.
  
  
  
  1.2       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGOMFontElement.java
  
  Index: SVGOMFontElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMFontElement.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SVGOMFontElement.java	2001/09/10 12:26:08	1.1
  +++ SVGOMFontElement.java	2001/09/12 16:57:07	1.2
  @@ -20,7 +20,7 @@
    * This class implements {@link SVGFontElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMFontElement.java,v 1.1 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMFontElement.java,v 1.2 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMFontElement
       extends    SVGStylableElement
  @@ -52,7 +52,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link
  -     * SVGExternalResourcesRequired#getExternalResourcesRequired()}.
  +     * org.w3c.dom.svg.SVGExternalResourcesRequired#getExternalResourcesRequired()}.
        */
       public SVGAnimatedBoolean getExternalResourcesRequired() {
           return SVGExternalResourcesRequiredSupport.
  
  
  
  1.2       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGOMGlyphRefElement.java
  
  Index: SVGOMGlyphRefElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMGlyphRefElement.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SVGOMGlyphRefElement.java	2001/09/10 12:26:08	1.1
  +++ SVGOMGlyphRefElement.java	2001/09/12 16:57:07	1.2
  @@ -21,7 +21,7 @@
    * This class implements {@link SVGGlyphRefElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMGlyphRefElement.java,v 1.1 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMGlyphRefElement.java,v 1.2 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMGlyphRefElement
       extends    SVGStylableElement
  @@ -74,7 +74,7 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGURIReference#getHref()}.
  +     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGURIReference#getHref()}.
        */
       public SVGAnimatedString getHref() {
           return SVGURIReferenceSupport.getHref(this);
  
  
  
  1.4       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGOMGradientElement.java
  
  Index: SVGOMGradientElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMGradientElement.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SVGOMGradientElement.java	2001/09/10 12:26:08	1.3
  +++ SVGOMGradientElement.java	2001/09/12 16:57:07	1.4
  @@ -24,7 +24,7 @@
    * This class implements {@link org.w3c.dom.svg.SVGGradientElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMGradientElement.java,v 1.3 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMGradientElement.java,v 1.4 2001/09/12 16:57:07 hillion Exp $
    */
   public abstract class SVGOMGradientElement
       extends    SVGStylableElement
  @@ -105,7 +105,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link
  -     * SVGExternalResourcesRequired#getExternalResourcesRequired()}.
  +     * org.w3c.dom.svg.SVGExternalResourcesRequired#getExternalResourcesRequired()}.
        */
       public SVGAnimatedBoolean getExternalResourcesRequired() {
   	return SVGExternalResourcesRequiredSupport.
  
  
  
  1.2       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGOMMPathElement.java
  
  Index: SVGOMMPathElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMMPathElement.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SVGOMMPathElement.java	2001/09/10 12:26:08	1.1
  +++ SVGOMMPathElement.java	2001/09/12 16:57:07	1.2
  @@ -20,7 +20,7 @@
    * This class implements {@link SVGMPathElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMMPathElement.java,v 1.1 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMMPathElement.java,v 1.2 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMMPathElement
       extends    SVGOMURIReferenceElement
  @@ -76,7 +76,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link
  -     * SVGExternalResourcesRequired#getExternalResourcesRequired()}.
  +     * org.w3c.dom.svg.SVGExternalResourcesRequired#getExternalResourcesRequired()}.
        */
       public SVGAnimatedBoolean getExternalResourcesRequired() {
           return SVGExternalResourcesRequiredSupport.
  
  
  
  1.3       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGOMMarkerElement.java
  
  Index: SVGOMMarkerElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMMarkerElement.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SVGOMMarkerElement.java	2001/09/10 12:26:08	1.2
  +++ SVGOMMarkerElement.java	2001/09/12 16:57:07	1.3
  @@ -29,7 +29,7 @@
    * This class implements {@link org.w3c.dom.svg.SVGMarkerElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMMarkerElement.java,v 1.2 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMMarkerElement.java,v 1.3 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMMarkerElement
       extends    SVGStylableElement
  @@ -154,7 +154,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link
  -     * SVGExternalResourcesRequired#getExternalResourcesRequired()}.
  +     * org.w3c.dom.svg.SVGExternalResourcesRequired#getExternalResourcesRequired()}.
        */
       public SVGAnimatedBoolean getExternalResourcesRequired() {
           return SVGExternalResourcesRequiredSupport.
  
  
  
  1.7       +2 -3      xml-batik/sources/org/apache/batik/dom/svg/SVGOMMaskElement.java
  
  Index: SVGOMMaskElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMMaskElement.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- SVGOMMaskElement.java	2001/09/10 12:26:08	1.6
  +++ SVGOMMaskElement.java	2001/09/12 16:57:07	1.7
  @@ -19,7 +19,7 @@
    * This class implements {@link org.w3c.dom.svg.SVGMaskElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMMaskElement.java,v 1.6 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMMaskElement.java,v 1.7 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMMaskElement
       extends    SVGGraphicsElement
  @@ -55,8 +55,7 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link
  -     * org.w3c.dom.svg.SVGPatternElement#getMaskContentUnits()}.
  +     * <b>DOM</b>: Implements {@link SVGMaskElement#getMaskContentUnits()}.
        */
       public SVGAnimatedEnumeration getMaskContentUnits() {
           throw new RuntimeException(" !!! TODO: getMaskContentUnits()");
  
  
  
  1.8       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGOMPatternElement.java
  
  Index: SVGOMPatternElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMPatternElement.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- SVGOMPatternElement.java	2001/09/10 12:26:08	1.7
  +++ SVGOMPatternElement.java	2001/09/12 16:57:07	1.8
  @@ -29,7 +29,7 @@
    * This class implements {@link org.w3c.dom.svg.SVGStopElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMPatternElement.java,v 1.7 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMPatternElement.java,v 1.8 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMPatternElement
       extends    SVGStylableElement
  @@ -168,7 +168,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link
  -     * SVGExternalResourcesRequired#getExternalResourcesRequired()}.
  +     * org.w3c.dom.svg.SVGExternalResourcesRequired#getExternalResourcesRequired()}.
        */
       public SVGAnimatedBoolean getExternalResourcesRequired() {
           return SVGExternalResourcesRequiredSupport.
  
  
  
  1.13      +6 -6      xml-batik/sources/org/apache/batik/dom/svg/SVGOMSVGElement.java
  
  Index: SVGOMSVGElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMSVGElement.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- SVGOMSVGElement.java	2001/09/10 12:26:08	1.12
  +++ SVGOMSVGElement.java	2001/09/12 16:57:07	1.13
  @@ -46,7 +46,7 @@
    * This class implements {@link org.w3c.dom.svg.SVGSVGElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMSVGElement.java,v 1.12 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMSVGElement.java,v 1.13 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMSVGElement
       extends    SVGStylableElement
  @@ -427,7 +427,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link
  -     * SVGExternalResourcesRequired#getExternalResourcesRequired()}.
  +     * org.w3c.dom.svg.SVGExternalResourcesRequired#getExternalResourcesRequired()}.
        */
       public SVGAnimatedBoolean getExternalResourcesRequired() {
           return SVGExternalResourcesRequiredSupport.
  @@ -437,28 +437,28 @@
       // SVGTests support ///////////////////////////////////////////////////
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGTests#getRequiredFeatures()}.
  +     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGTests#getRequiredFeatures()}.
        */
       public SVGStringList getRequiredFeatures() {
           return SVGTestsSupport.getRequiredFeatures(this);
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGTests#getRequiredExtensions()}.
  +     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGTests#getRequiredExtensions()}.
        */
       public SVGStringList getRequiredExtensions() {
           return SVGTestsSupport.getRequiredExtensions(this);
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGTests#getSystemLanguage()}.
  +     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGTests#getSystemLanguage()}.
        */
       public SVGStringList getSystemLanguage() {
           return SVGTestsSupport.getSystemLanguage(this);
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGTests#hasExtension(String)}.
  +     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGTests#hasExtension(String)}.
        */
       public boolean hasExtension(String extension) {
           return SVGTestsSupport.hasExtension(extension, this);
  
  
  
  1.6       +4 -3      xml-batik/sources/org/apache/batik/dom/svg/SVGOMSymbolElement.java
  
  Index: SVGOMSymbolElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMSymbolElement.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SVGOMSymbolElement.java	2001/09/10 12:26:08	1.5
  +++ SVGOMSymbolElement.java	2001/09/12 16:57:07	1.6
  @@ -29,7 +29,7 @@
    * This class implements {@link SVGSymbolElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMSymbolElement.java,v 1.5 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMSymbolElement.java,v 1.6 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMSymbolElement
       extends    SVGStylableElement
  @@ -121,14 +121,15 @@
       // SVGFitToViewBox support ////////////////////////////////////////////
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGFitToViewBox#getViewBox()}.
  +     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGFitToViewBox#getViewBox()}.
        */
       public SVGAnimatedRect getViewBox() {
   	throw new RuntimeException(" !!! TODO: getViewBox()");
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGFitToViewBox#getPreserveAspectRatio()}.
  +     * <b>DOM</b>: Implements {@link
  +     * org.w3c.dom.svg.SVGFitToViewBox#getPreserveAspectRatio()}.
        */
       public SVGAnimatedPreserveAspectRatio getPreserveAspectRatio() {
   	throw new RuntimeException(" !!! TODO: getPreserveAspectRatio()");
  
  
  
  1.5       +4 -4      xml-batik/sources/org/apache/batik/dom/svg/SVGOMTextContentElement.java
  
  Index: SVGOMTextContentElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMTextContentElement.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SVGOMTextContentElement.java	2001/09/10 12:26:08	1.4
  +++ SVGOMTextContentElement.java	2001/09/12 16:57:07	1.5
  @@ -36,7 +36,7 @@
    * This class provides a common superclass for all graphics elements.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMTextContentElement.java,v 1.4 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMTextContentElement.java,v 1.5 2001/09/12 16:57:07 hillion Exp $
    */
   public abstract class SVGOMTextContentElement
       extends    SVGOMElement
  @@ -197,7 +197,7 @@
   
       /**
        * Implements {@link
  -     * OverrideStyleElement#hasOverrideStyle(String)}.
  +     * org.apache.batik.dom.util.OverrideStyleElement#hasOverrideStyle(String)}.
        */
       public boolean hasOverrideStyle(String pseudoElt) {
   	return SVGStylableSupport.hasOverrideStyle(pseudoElt);
  @@ -205,7 +205,7 @@
   
       /**
        * Implements {@link
  -     * OverrideStyleElement#getOverrideStyle(String)}.
  +     * org.apache.batik.dom.util.OverrideStyleElement#getOverrideStyle(String)}.
        */
       public CSSStyleDeclaration getOverrideStyle(String pseudoElt) {
   	return SVGStylableSupport.getOverrideStyle(pseudoElt, this);
  @@ -215,7 +215,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link
  -     * SVGExternalResourcesRequired#getExternalResourcesRequired()}.
  +     * org.w3c.dom.svg.SVGExternalResourcesRequired#getExternalResourcesRequired()}.
        */
       public SVGAnimatedBoolean getExternalResourcesRequired() {
   	return SVGExternalResourcesRequiredSupport.
  
  
  
  1.7       +6 -6      xml-batik/sources/org/apache/batik/dom/svg/SVGOMTextElement.java
  
  Index: SVGOMTextElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMTextElement.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- SVGOMTextElement.java	2001/09/10 12:26:08	1.6
  +++ SVGOMTextElement.java	2001/09/12 16:57:07	1.7
  @@ -24,7 +24,7 @@
    * This class implements {@link SVGTextElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMTextElement.java,v 1.6 2001/09/10 12:26:08 hillion Exp $
  + * @version $Id: SVGOMTextElement.java,v 1.7 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMTextElement
       extends    SVGOMTextPositioningElement
  @@ -46,7 +46,7 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link org.w3c.dom.Node#getLocalName()}.
  +     * <b>DOM</b>: Implements {@link Node#getLocalName()}.
        */
       public String getLocalName() {
           return SVG_TEXT_TAG;
  @@ -71,21 +71,21 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGLocatable#getBBox()}.
  +     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGLocatable#getBBox()}.
        */
       public SVGRect getBBox() {
   	return SVGLocatableSupport.getBBox(this);
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGLocatable#getCTM()}.
  +     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGLocatable#getCTM()}.
        */
       public SVGMatrix getCTM() {
   	return SVGLocatableSupport.getCTM(this);
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGLocatable#getScreenCTM()}.
  +     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGLocatable#getScreenCTM()}.
        */
       public SVGMatrix getScreenCTM() {
   	return SVGLocatableSupport.getScreenCTM(this);
  @@ -103,7 +103,7 @@
       // SVGTransformable support /////////////////////////////////////////////
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGTransformable#getTransform()}.
  +     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGTransformable#getTransform()}.
        */
       public SVGAnimatedTransformList getTransform() {
   	return SVGTransformableSupport.getTransform(this);
  
  
  
  1.2       +3 -4      xml-batik/sources/org/apache/batik/dom/svg/SVGOMURIReferenceElement.java
  
  Index: SVGOMURIReferenceElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMURIReferenceElement.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SVGOMURIReferenceElement.java	2001/09/10 12:26:09	1.1
  +++ SVGOMURIReferenceElement.java	2001/09/12 16:57:07	1.2
  @@ -17,7 +17,7 @@
    * This class implements {@link SVGURIReference}..
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMURIReferenceElement.java,v 1.1 2001/09/10 12:26:09 hillion Exp $
  + * @version $Id: SVGOMURIReferenceElement.java,v 1.2 2001/09/12 16:57:07 hillion Exp $
    */
   public abstract class SVGOMURIReferenceElement
       extends    SVGOMElement
  @@ -34,13 +34,12 @@
        * @param prefix The namespace prefix.
        * @param owner The owner document.
        */
  -    protected SVGOMURIReferenceElement(String prefix,
  -                                                      AbstractDocument owner) {
  +    protected SVGOMURIReferenceElement(String prefix, AbstractDocument owner) {
           super(prefix, owner);
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGURIReference#getHref()}.
  +     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGURIReference#getHref()}.
        */
       public SVGAnimatedString getHref() {
           return SVGURIReferenceSupport.getHref(this);
  
  
  
  1.2       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGOMViewElement.java
  
  Index: SVGOMViewElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGOMViewElement.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SVGOMViewElement.java	2001/09/10 12:26:09	1.1
  +++ SVGOMViewElement.java	2001/09/12 16:57:07	1.2
  @@ -21,7 +21,7 @@
    * This class implements {@link org.w3c.dom.svg.SVGViewElement}.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGOMViewElement.java,v 1.1 2001/09/10 12:26:09 hillion Exp $
  + * @version $Id: SVGOMViewElement.java,v 1.2 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGOMViewElement
       extends SVGOMElement
  @@ -110,7 +110,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link
  -     * SVGExternalResourcesRequired#getExternalResourcesRequired()}.
  +     * org.w3c.dom.svg.SVGExternalResourcesRequired#getExternalResourcesRequired()}.
        */
       public SVGAnimatedBoolean getExternalResourcesRequired() {
           return SVGExternalResourcesRequiredSupport.
  
  
  
  1.2       +4 -5      xml-batik/sources/org/apache/batik/dom/svg/SVGStylableElement.java
  
  Index: SVGStylableElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGStylableElement.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SVGStylableElement.java	2001/09/10 12:26:09	1.1
  +++ SVGStylableElement.java	2001/09/12 16:57:07	1.2
  @@ -22,7 +22,7 @@
    * SVGStylable.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGStylableElement.java,v 1.1 2001/09/10 12:26:09 hillion Exp $
  + * @version $Id: SVGStylableElement.java,v 1.2 2001/09/12 16:57:07 hillion Exp $
    */
   public abstract class SVGStylableElement
       extends SVGOMElement
  @@ -59,8 +59,7 @@
       // SVGStylable support ///////////////////////////////////////////////////
   
       /**
  -     * Implements {@link
  -     * org.apache.batik.css.ExtendedElementCSSInlineStyle#hasStyle()}.
  +     * Implements {@link ExtendedElementCSSInlineStyle#hasStyle()}.
        */
       public boolean hasStyle() {
           return SVGStylableSupport.hasStyle(this);
  @@ -93,7 +92,7 @@
   
       /**
        * Implements {@link
  -     * OverrideStyleElement#hasOverrideStyle(String)}.
  +     * org.apache.batik.dom.util.OverrideStyleElement#hasOverrideStyle(String)}.
        */
       public boolean hasOverrideStyle(String pseudoElt) {
   	return SVGStylableSupport.hasOverrideStyle(pseudoElt);
  @@ -101,7 +100,7 @@
   
       /**
        * Implements {@link
  -     * OverrideStyleElement#getOverrideStyle(String)}.
  +     * org.apache.batik.dom.util.OverrideStyleElement#getOverrideStyle(String)}.
        */
       public CSSStyleDeclaration getOverrideStyle(String pseudoElt) {
   	return SVGStylableSupport.getOverrideStyle(pseudoElt, this);
  
  
  
  1.4       +3 -3      xml-batik/sources/org/apache/batik/dom/svg/SVGStylableSupport.java
  
  Index: SVGStylableSupport.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGStylableSupport.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SVGStylableSupport.java	2001/09/10 12:26:09	1.3
  +++ SVGStylableSupport.java	2001/09/12 16:57:07	1.4
  @@ -20,7 +20,7 @@
    * This class provides support for implementing a stylable element.
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGStylableSupport.java,v 1.3 2001/09/10 12:26:09 hillion Exp $
  + * @version $Id: SVGStylableSupport.java,v 1.4 2001/09/12 16:57:07 hillion Exp $
    */
   public class SVGStylableSupport implements SVGConstants {
   
  @@ -69,7 +69,7 @@
   
       /**
        * To implements {@link
  -     * OverrideStyleElement#hasOverrideStyle(String)}.
  +     * org.apache.batik.dom.util.OverrideStyleElement#hasOverrideStyle(String)}.
        */
       public static boolean hasOverrideStyle(String pseudoElt) {
           // !!! TODO: hasOverrideStyle()
  @@ -78,7 +78,7 @@
   
       /**
        * To implements {@link
  -     * OverrideStyleElement#getOverrideStyle(String)}.
  +     * org.apache.batik.dom.util.OverrideStyleElement#getOverrideStyle(String)}.
        */
       public static CSSStyleDeclaration getOverrideStyle(String pseudoElt, Element elt) {
   	// !!! TODO: getOverrideStyle()
  
  
  
  1.2       +2 -2      xml-batik/sources/org/apache/batik/dom/svg/SVGURIReferenceTextPositioningElement.java
  
  Index: SVGURIReferenceTextPositioningElement.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/svg/SVGURIReferenceTextPositioningElement.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SVGURIReferenceTextPositioningElement.java	2001/09/10 12:26:09	1.1
  +++ SVGURIReferenceTextPositioningElement.java	2001/09/12 16:57:07	1.2
  @@ -18,7 +18,7 @@
    * and {@link SVGURIReference}..
    *
    * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
  - * @version $Id: SVGURIReferenceTextPositioningElement.java,v 1.1 2001/09/10 12:26:09 hillion Exp $
  + * @version $Id: SVGURIReferenceTextPositioningElement.java,v 1.2 2001/09/12 16:57:07 hillion Exp $
    */
   public abstract class SVGURIReferenceTextPositioningElement
       extends    SVGOMTextPositioningElement
  @@ -41,7 +41,7 @@
       }
   
       /**
  -     * <b>DOM</b>: Implements {@link SVGURIReference#getHref()}.
  +     * <b>DOM</b>: Implements {@link org.w3c.dom.svg.SVGURIReference#getHref()}.
        */
       public SVGAnimatedString getHref() {
           return SVGURIReferenceSupport.getHref(this);
  
  
  

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