]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
removed setting propertyList
authorKeiron Liddle <keiron@apache.org>
Wed, 15 Nov 2000 22:24:08 +0000 (22:24 +0000)
committerKeiron Liddle <keiron@apache.org>
Wed, 15 Nov 2000 22:24:08 +0000 (22:24 +0000)
also jstyle'd

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193814 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/svg/SVGD.java
src/org/apache/fop/svg/SVGLengthListProperty.java
src/org/apache/fop/svg/SVGLengthProperty.java
src/org/apache/fop/svg/SVGPoints.java
src/org/apache/fop/svg/SVGStringProperty.java
src/org/apache/fop/svg/SVGStyle.java
src/org/apache/fop/svg/SVGTransform.java
src/org/apache/fop/svg/TextProperty.java

index 5356ccea883c47d1cbabd40a5dda16b9776d9ce3..7fab240ce7b60782e31ac737367f799368409933 100644 (file)
@@ -1,36 +1,36 @@
-/*-- $Id$ -- 
+/*-- $Id$ --
 
  ============================================================================
                    The Apache Software License, Version 1.1
  ============================================================================
+
     Copyright (C) 1999 The Apache Software Foundation. All rights reserved.
+
  Redistribution and use in source and binary forms, with or without modifica-
  tion, are permitted provided that the following conditions are met:
+
  1. Redistributions of  source code must  retain the above copyright  notice,
     this list of conditions and the following disclaimer.
+
  2. Redistributions in binary form must reproduce the above copyright notice,
     this list of conditions and the following disclaimer in the documentation
     and/or other materials provided with the distribution.
+
  3. The end-user documentation included with the redistribution, if any, must
     include  the following  acknowledgment:  "This product includes  software
     developed  by the  Apache Software Foundation  (http://www.apache.org/)."
     Alternately, this  acknowledgment may  appear in the software itself,  if
     and wherever such third-party acknowledgments normally appear.
+
  4. The names "Fop" and  "Apache Software Foundation"  must not be used to
     endorse  or promote  products derived  from this  software without  prior
     written permission. For written permission, please contact
     apache@apache.org.
+
  5. Products  derived from this software may not  be called "Apache", nor may
     "Apache" appear  in their name,  without prior written permission  of the
     Apache Software Foundation.
+
  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
  ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
  (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
  This software  consists of voluntary contributions made  by many individuals
  on  behalf of the Apache Software  Foundation and was  originally created by
- James Tauber <jtauber@jtauber.com>. For more  information on the Apache 
+ James Tauber <jtauber@jtauber.com>. For more  information on the Apache
  Software Foundation, please see <http://www.apache.org/>.
+
  */
 package org.apache.fop.svg;
 
@@ -61,69 +61,70 @@ import java.util.*;
  *
  */
 public class SVGD extends Property {
-       
-       /**
-        * inner class for making SVG Length objects.
-        */
-       public static class Maker extends Property.Maker {
-
-       /**
-        * whether this property is inherited or not.
-        *
-        * @return is this inherited?
-        */
-       public boolean isInherited() { return false; }
-       
-       /**
-        * make an SVG Length property with the given value.
-        *
-        * @param propertyList the property list this is a member of
-        * @param value the explicit string value of the property
-        */
-       public Property make(PropertyList propertyList, String value, FObj fo)
-               throws FOPException {
-               return new SVGD(propertyList, new PathData(value));
-       }
-               
-       /** 
-        * make an SVG Length property with the default value.
-        *
-        * @param propertyList the property list the property is a member of
-        */
-       public Property make(PropertyList propertyList) throws FOPException {
-               return make(propertyList, "", null);
-       }
-       }
-
-       /**
-        * returns the maker for this object.
-        *
-        * @return the maker for SVG Length objects
-        */
-       public static Property.Maker maker(String propName) {
-       return new SVGD.Maker();
-       }
-
-       protected PathData style;
-       
-       /**
-        * construct an SVG length (called by the Maker).
-        *
-        * @param propertyList the property list this is a member of
-        * @param explicitValue the explicit value as a Length object
-        */
-       protected SVGD(PropertyList propertyList, PathData explicitValue) {
-       this.propertyList = propertyList;
-       this.style = explicitValue;
-       }
-
-       /**
-        * get the length
-        *
-        * @return the length as a Length object
-        */
-       public Vector getPath()
-       {
-               return this.style.getPath();
-       }
+
+    /**
+     * inner class for making SVG Length objects.
+     */
+    public static class Maker extends Property.Maker {
+
+        /**
+         * whether this property is inherited or not.
+         *
+         * @return is this inherited?
+         */
+        public boolean isInherited() {
+            return false;
+        }
+
+        /**
+         * make an SVG Length property with the given value.
+         *
+         * @param propertyList the property list this is a member of
+         * @param value the explicit string value of the property
+         */
+        public Property make(PropertyList propertyList, String value,
+                             FObj fo) throws FOPException {
+            return new SVGD(propertyList, new PathData(value));
+        }
+
+        /**
+         * make an SVG Length property with the default value.
+         *
+         * @param propertyList the property list the property is a member of
+         */
+        public Property make(PropertyList propertyList)
+        throws FOPException {
+            return make(propertyList, "", null);
+        }
+    }
+
+    /**
+     * returns the maker for this object.
+     *
+     * @return the maker for SVG Length objects
+     */
+    public static Property.Maker maker(String propName) {
+        return new SVGD.Maker();
+    }
+
+    protected PathData style;
+
+    /**
+     * construct an SVG length (called by the Maker).
+     *
+     * @param propertyList the property list this is a member of
+     * @param explicitValue the explicit value as a Length object
+     */
+    protected SVGD(PropertyList propertyList, PathData explicitValue) {
+        this.style = explicitValue;
+    }
+
+    /**
+     * get the length
+     *
+     * @return the length as a Length object
+     */
+    public Vector getPath() {
+        return this.style.getPath();
+    }
 }
index b25d621837b68b492dbb7cb6746a6ac3207438ed..bdbe25656c87fe5c0182aa232aad3778c67e3b00 100644 (file)
@@ -1,36 +1,36 @@
-/*-- $Id$ -- 
+/*-- $Id$ --
 
  ============================================================================
                    The Apache Software License, Version 1.1
  ============================================================================
+
     Copyright (C) 1999 The Apache Software Foundation. All rights reserved.
+
  Redistribution and use in source and binary forms, with or without modifica-
  tion, are permitted provided that the following conditions are met:
+
  1. Redistributions of  source code must  retain the above copyright  notice,
     this list of conditions and the following disclaimer.
+
  2. Redistributions in binary form must reproduce the above copyright notice,
     this list of conditions and the following disclaimer in the documentation
     and/or other materials provided with the distribution.
+
  3. The end-user documentation included with the redistribution, if any, must
     include  the following  acknowledgment:  "This product includes  software
     developed  by the  Apache Software Foundation  (http://www.apache.org/)."
     Alternately, this  acknowledgment may  appear in the software itself,  if
     and wherever such third-party acknowledgments normally appear.
+
  4. The names "Fop" and  "Apache Software Foundation"  must not be used to
     endorse  or promote  products derived  from this  software without  prior
     written permission. For written permission, please contact
     apache@apache.org.
+
  5. Products  derived from this software may not  be called "Apache", nor may
     "Apache" appear  in their name,  without prior written permission  of the
     Apache Software Foundation.
+
  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
  ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
  (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
  This software  consists of voluntary contributions made  by many individuals
  on  behalf of the Apache Software  Foundation and was  originally created by
- James Tauber <jtauber@jtauber.com>. For more  information on the Apache 
+ James Tauber <jtauber@jtauber.com>. For more  information on the Apache
  Software Foundation, please see <http://www.apache.org/>.
+
  */
 package org.apache.fop.svg;
 
@@ -65,77 +65,81 @@ import org.w3c.dom.svg.*;
  * a class representing all the length properties in SVG
  */
 public class SVGLengthListProperty extends Property {
-       
-       /**
-        * inner class for making SVG Length objects.
-        */
-       public static class Maker extends Property.Maker {
-
-       /**
-        * whether this property is inherited or not.
-        *
-        * @return is this inherited?
-        */
-       public boolean isInherited() { return false; }
-       
-       /**
-        * make an SVG Length property with the given value.
-        *
-        * @param propertyList the property list this is a member of
-        * @param value the explicit string value of the property
-        */
-       public Property make(PropertyList propertyList, String value, FObj fo)
-               throws FOPException {
-               SVGAnimatedLengthListImpl anime = new SVGAnimatedLengthListImpl();
-               SVGLengthListImpl len = new SVGLengthListImpl();
-               anime.setBaseVal(len);
-               len.setValueAsString(value);
-               return new SVGLengthListProperty(propertyList, anime);
-       }
-
-       /** 
-        * make an SVG Length property with the default value.
-        *
-        * @param propertyList the property list the property is a member of
-        */
-       public Property make(PropertyList propertyList) throws FOPException {
-               return make(propertyList, "", null);
-       }
-       }
-
-       /**
-        * returns the maker for this object.
-        *
-        * @return the maker for SVG Length objects
-        */
-       public static Property.Maker maker() {
-       return new SVGLengthListProperty.Maker();
-       }
-
-       public static Property.Maker maker(String propName) {
-       return new SVGLengthListProperty.Maker();
-       }
-
-       /** the length as a Length object */
-       protected SVGAnimatedLengthList value;
-       
-       /**
-        * construct an SVG length (called by the Maker).
-        *
-        * @param propertyList the property list this is a member of
-        * @param explicitValue the explicit value as a Length object
-        */
-       protected SVGLengthListProperty(PropertyList propertyList, SVGAnimatedLengthList explicitValue) {
-       this.propertyList = propertyList;
-       this.value = explicitValue;
-       }
-
-       /**
-        * get the length
-        *
-        * @return the length as a Length object
-        */
-       public SVGAnimatedLengthList getSVGLengthList() {
-               return this.value;
-       }
+
+    /**
+     * inner class for making SVG Length objects.
+     */
+    public static class Maker extends Property.Maker {
+
+        /**
+         * whether this property is inherited or not.
+         *
+         * @return is this inherited?
+         */
+        public boolean isInherited() {
+            return false;
+        }
+
+        /**
+         * make an SVG Length property with the given value.
+         *
+         * @param propertyList the property list this is a member of
+         * @param value the explicit string value of the property
+         */
+        public Property make(PropertyList propertyList, String value,
+                             FObj fo) throws FOPException {
+            SVGAnimatedLengthListImpl anime =
+              new SVGAnimatedLengthListImpl();
+            SVGLengthListImpl len = new SVGLengthListImpl();
+            anime.setBaseVal(len);
+            len.setValueAsString(value);
+            return new SVGLengthListProperty(propertyList, anime);
+        }
+
+        /**
+         * make an SVG Length property with the default value.
+         *
+         * @param propertyList the property list the property is a member of
+         */
+        public Property make(PropertyList propertyList)
+        throws FOPException {
+            return make(propertyList, "", null);
+        }
+    }
+
+    /**
+     * returns the maker for this object.
+     *
+     * @return the maker for SVG Length objects
+     */
+    public static Property.Maker maker() {
+        return new SVGLengthListProperty.Maker();
+    }
+
+    public static Property.Maker maker(String propName) {
+        return new SVGLengthListProperty.Maker();
+    }
+
+    /** the length as a Length object */
+    protected SVGAnimatedLengthList value;
+
+    /**
+     * construct an SVG length (called by the Maker).
+     *
+     * @param propertyList the property list this is a member of
+     * @param explicitValue the explicit value as a Length object
+     */
+    protected SVGLengthListProperty(PropertyList propertyList,
+                                    SVGAnimatedLengthList explicitValue) {
+        this.value = explicitValue;
+    }
+
+    /**
+     * get the length
+     *
+     * @return the length as a Length object
+     */
+    public SVGAnimatedLengthList getSVGLengthList() {
+        return this.value;
+    }
 }
index ce774b8b71e8c55d49bf4f1f9c75475dd1da6630..da30e761e45fe8382b2543e90bdd149728f26abd 100644 (file)
@@ -81,8 +81,8 @@ public class SVGLengthProperty extends Property {
          * @param propertyList the property list this is a member of
          * @param value the explicit string value of the property
          */
-        public Property make(PropertyList propertyList,
-                             String value, FObj fo) throws FOPException {
+        public Property make(PropertyList propertyList, String value,
+                             FObj fo) throws FOPException {
             SVGLengthImpl len = new SVGLengthImpl();
             len.setValueAsString(value);
             return new SVGLengthProperty(propertyList, len);
@@ -115,7 +115,7 @@ public class SVGLengthProperty extends Property {
      * @return the maker for SVG Length objects
      */
     public static Property.Maker maker(String propName) {
-       return new SVGLengthProperty.Maker();
+        return new SVGLengthProperty.Maker();
     }
 
     /** the length as a Length object */
@@ -129,7 +129,6 @@ public class SVGLengthProperty extends Property {
      */
     protected SVGLengthProperty(PropertyList propertyList,
                                 SVGLengthImpl explicitValue) {
-        this.propertyList = propertyList;
         this.value = explicitValue;
     }
 
index 36ff790cf167068d8eacc999247a175fd4f682f6..84c823d22cd11a3b83d34b8bdca3bc2d74a5c016 100644 (file)
@@ -1,36 +1,36 @@
-/*-- $Id$ -- 
+/*-- $Id$ --
 
  ============================================================================
                    The Apache Software License, Version 1.1
  ============================================================================
+
     Copyright (C) 1999 The Apache Software Foundation. All rights reserved.
+
  Redistribution and use in source and binary forms, with or without modifica-
  tion, are permitted provided that the following conditions are met:
+
  1. Redistributions of  source code must  retain the above copyright  notice,
     this list of conditions and the following disclaimer.
+
  2. Redistributions in binary form must reproduce the above copyright notice,
     this list of conditions and the following disclaimer in the documentation
     and/or other materials provided with the distribution.
+
  3. The end-user documentation included with the redistribution, if any, must
     include  the following  acknowledgment:  "This product includes  software
     developed  by the  Apache Software Foundation  (http://www.apache.org/)."
     Alternately, this  acknowledgment may  appear in the software itself,  if
     and wherever such third-party acknowledgments normally appear.
+
  4. The names "Fop" and  "Apache Software Foundation"  must not be used to
     endorse  or promote  products derived  from this  software without  prior
     written permission. For written permission, please contact
     apache@apache.org.
+
  5. Products  derived from this software may not  be called "Apache", nor may
     "Apache" appear  in their name,  without prior written permission  of the
     Apache Software Foundation.
+
  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
  ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
  (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
  This software  consists of voluntary contributions made  by many individuals
  on  behalf of the Apache Software  Foundation and was  originally created by
- James Tauber <jtauber@jtauber.com>. For more  information on the Apache 
+ James Tauber <jtauber@jtauber.com>. For more  information on the Apache
  Software Foundation, please see <http://www.apache.org/>.
+
  */
 package org.apache.fop.svg;
 
@@ -61,69 +61,71 @@ import java.util.*;
  *
  */
 public class SVGPoints extends Property {
-       
-       /**
-        * inner class for making SVG Length objects.
-        */
-       public static class Maker extends Property.Maker {
-
-       /**
-        * whether this property is inherited or not.
-        *
-        * @return is this inherited?
-        */
-       public boolean isInherited() { return false; }
-       
-       /**
-        * make an SVG Length property with the given value.
-        *
-        * @param propertyList the property list this is a member of
-        * @param value the explicit string value of the property
-        */
-       public Property make(PropertyList propertyList, String value, FObj fo)
-               throws FOPException {
-               return new SVGPoints(propertyList, new PointsData(value));
-       }
-               
-       /** 
-        * make an SVG Length property with the default value.
-        *
-        * @param propertyList the property list the property is a member of
-        */
-       public Property make(PropertyList propertyList) throws FOPException {
-               return make(propertyList, "", null);
-       }
-       }
-
-       /**
-        * returns the maker for this object.
-        *
-        * @return the maker for SVG Length objects
-        */
-       public static Property.Maker maker(String propName) {
-       return new SVGPoints.Maker();
-       }
-
-       protected PointsData style;
-       
-       /**
-        * construct an SVG length (called by the Maker).
-        *
-        * @param propertyList the property list this is a member of
-        * @param explicitValue the explicit value as a Length object
-        */
-       protected SVGPoints(PropertyList propertyList, PointsData explicitValue) {
-       this.propertyList = propertyList;
-       this.style = explicitValue;
-       }
-
-       /**
-        * get the length
-        *
-        * @return the length as a Length object
-        */
-       public Vector getPoints()
-       {
-               return this.style.getPoints();
-       }
+
+    /**
+     * inner class for making SVG Length objects.
+     */
+    public static class Maker extends Property.Maker {
+
+        /**
+         * whether this property is inherited or not.
+         *
+         * @return is this inherited?
+         */
+        public boolean isInherited() {
+            return false;
+        }
+
+        /**
+         * make an SVG Length property with the given value.
+         *
+         * @param propertyList the property list this is a member of
+         * @param value the explicit string value of the property
+         */
+        public Property make(PropertyList propertyList, String value,
+                             FObj fo) throws FOPException {
+            return new SVGPoints(propertyList, new PointsData(value));
+        }
+
+        /**
+         * make an SVG Length property with the default value.
+         *
+         * @param propertyList the property list the property is a member of
+         */
+        public Property make(PropertyList propertyList)
+        throws FOPException {
+            return make(propertyList, "", null);
+        }
+    }
+
+    /**
+     * returns the maker for this object.
+     *
+     * @return the maker for SVG Length objects
+     */
+    public static Property.Maker maker(String propName) {
+        return new SVGPoints.Maker();
+    }
+
+    protected PointsData style;
+
+    /**
+     * construct an SVG length (called by the Maker).
+     *
+     * @param propertyList the property list this is a member of
+     * @param explicitValue the explicit value as a Length object
+     */
+    protected SVGPoints(PropertyList propertyList,
+                        PointsData explicitValue) {
+        this.style = explicitValue;
+    }
+
+    /**
+     * get the length
+     *
+     * @return the length as a Length object
+     */
+    public Vector getPoints() {
+        return this.style.getPoints();
+    }
 }
index c01f28ec5291eec5e4e4a372dd7671ec19078653..507e19c963c7541fb6fcd10f1a65593ae2ce350b 100644 (file)
@@ -1,36 +1,36 @@
-/*-- $Id$ -- 
+/*-- $Id$ --
 
  ============================================================================
                    The Apache Software License, Version 1.1
  ============================================================================
+
     Copyright (C) 1999 The Apache Software Foundation. All rights reserved.
+
  Redistribution and use in source and binary forms, with or without modifica-
  tion, are permitted provided that the following conditions are met:
+
  1. Redistributions of  source code must  retain the above copyright  notice,
     this list of conditions and the following disclaimer.
+
  2. Redistributions in binary form must reproduce the above copyright notice,
     this list of conditions and the following disclaimer in the documentation
     and/or other materials provided with the distribution.
+
  3. The end-user documentation included with the redistribution, if any, must
     include  the following  acknowledgment:  "This product includes  software
     developed  by the  Apache Software Foundation  (http://www.apache.org/)."
     Alternately, this  acknowledgment may  appear in the software itself,  if
     and wherever such third-party acknowledgments normally appear.
+
  4. The names "Fop" and  "Apache Software Foundation"  must not be used to
     endorse  or promote  products derived  from this  software without  prior
     written permission. For written permission, please contact
     apache@apache.org.
+
  5. Products  derived from this software may not  be called "Apache", nor may
     "Apache" appear  in their name,  without prior written permission  of the
     Apache Software Foundation.
+
  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
  ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
  (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
  This software  consists of voluntary contributions made  by many individuals
  on  behalf of the Apache Software  Foundation and was  originally created by
- James Tauber <jtauber@jtauber.com>. For more  information on the Apache 
+ James Tauber <jtauber@jtauber.com>. For more  information on the Apache
  Software Foundation, please see <http://www.apache.org/>.
+
  */
 package org.apache.fop.svg;
 
@@ -62,69 +62,72 @@ import org.apache.fop.dom.svg.*;
  * a class representing all the length properties in SVG
  */
 public class SVGStringProperty extends Property {
-       
-       /**
-        * inner class for making SVG Length objects.
-        */
-       public static class Maker extends Property.Maker {
-
-       /**
-        * whether this property is inherited or not.
-        *
-        * @return is this inherited?
-        */
-       public boolean isInherited() { return false; }
-       
-       /**
-        * make an SVG Length property with the given value.
-        *
-        * @param propertyList the property list this is a member of
-        * @param value the explicit string value of the property
-        */
-       public Property make(PropertyList propertyList, String value, FObj fo)
-               throws FOPException {
-               return new SVGStringProperty(propertyList, value);
-       }
-
-       /** 
-        * make an SVG Length property with the default value.
-        *
-        * @param propertyList the property list the property is a member of
-        */
-       public Property make(PropertyList propertyList) throws FOPException {
-               return make(propertyList, "", null);
-       }
-       }
-
-       /**
-        * returns the maker for this object.
-        *
-        * @return the maker for SVG Length objects
-        */
-       public static Property.Maker maker() {
-       return new SVGStringProperty.Maker();
-       }
-
-       /** the length as a Length object */
-       protected String value;
-       
-       /**
-        * construct an SVG length (called by the Maker).
-        *
-        * @param propertyList the property list this is a member of
-        * @param explicitValue the explicit value as a Length object
-        */
-       protected SVGStringProperty(PropertyList propertyList, String explicitValue) {
-       this.propertyList = propertyList;
-       this.value = explicitValue;
-       }
-
-       /**
-        * get the length
-        *
-        * @return the length as a Length object
-        */
-       public String getString() {
-               return this.value;
-       }
+
+    /**
+     * inner class for making SVG Length objects.
+     */
+    public static class Maker extends Property.Maker {
+
+        /**
+         * whether this property is inherited or not.
+         *
+         * @return is this inherited?
+         */
+        public boolean isInherited() {
+            return false;
+        }
+
+        /**
+         * make an SVG Length property with the given value.
+         *
+         * @param propertyList the property list this is a member of
+         * @param value the explicit string value of the property
+         */
+        public Property make(PropertyList propertyList, String value,
+                             FObj fo) throws FOPException {
+            return new SVGStringProperty(propertyList, value);
+        }
+
+        /**
+         * make an SVG Length property with the default value.
+         *
+         * @param propertyList the property list the property is a member of
+         */
+        public Property make(PropertyList propertyList)
+        throws FOPException {
+            return make(propertyList, "", null);
+        }
+    }
+
+    /**
+     * returns the maker for this object.
+     *
+     * @return the maker for SVG Length objects
+     */
+    public static Property.Maker maker() {
+        return new SVGStringProperty.Maker();
+    }
+
+    /** the length as a Length object */
+    protected String value;
+
+    /**
+     * construct an SVG length (called by the Maker).
+     *
+     * @param propertyList the property list this is a member of
+     * @param explicitValue the explicit value as a Length object
+     */
+    protected SVGStringProperty(PropertyList propertyList,
+                                String explicitValue) {
+        this.value = explicitValue;
+    }
+
+    /**
+     * get the length
+     *
+     * @return the length as a Length object
+     */
+    public String getString() {
+        return this.value;
+    }
 }
index f804aa700475c5b70ec6fe45536daf2892111e2f..28bc62fa5f9bbcdf7cfdb5a6536e6f8268a02b3b 100644 (file)
@@ -1,36 +1,36 @@
-/*-- $Id$ -- 
+/*-- $Id$ --
 
  ============================================================================
                    The Apache Software License, Version 1.1
  ============================================================================
+
     Copyright (C) 1999 The Apache Software Foundation. All rights reserved.
+
  Redistribution and use in source and binary forms, with or without modifica-
  tion, are permitted provided that the following conditions are met:
+
  1. Redistributions of  source code must  retain the above copyright  notice,
     this list of conditions and the following disclaimer.
+
  2. Redistributions in binary form must reproduce the above copyright notice,
     this list of conditions and the following disclaimer in the documentation
     and/or other materials provided with the distribution.
+
  3. The end-user documentation included with the redistribution, if any, must
     include  the following  acknowledgment:  "This product includes  software
     developed  by the  Apache Software Foundation  (http://www.apache.org/)."
     Alternately, this  acknowledgment may  appear in the software itself,  if
     and wherever such third-party acknowledgments normally appear.
+
  4. The names "Fop" and  "Apache Software Foundation"  must not be used to
     endorse  or promote  products derived  from this  software without  prior
     written permission. For written permission, please contact
     apache@apache.org.
+
  5. Products  derived from this software may not  be called "Apache", nor may
     "Apache" appear  in their name,  without prior written permission  of the
     Apache Software Foundation.
+
  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
  ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
  (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
  This software  consists of voluntary contributions made  by many individuals
  on  behalf of the Apache Software  Foundation and was  originally created by
- James Tauber <jtauber@jtauber.com>. For more  information on the Apache 
+ James Tauber <jtauber@jtauber.com>. For more  information on the Apache
  Software Foundation, please see <http://www.apache.org/>.
+
  */
 package org.apache.fop.svg;
 
@@ -63,69 +63,70 @@ import org.w3c.dom.css.CSSStyleDeclaration;
  *
  */
 public class SVGStyle extends Property {
-       
-       /**
-        * inner class for making SVG Length objects.
-        */
-       public static class Maker extends Property.Maker {
-
-       /**
-        * whether this property is inherited or not.
-        *
-        * @return is this inherited?
-        */
-       public boolean isInherited() { return false; }
-       
-       /**
-        * make an SVG Length property with the given value.
-        *
-        * @param propertyList the property list this is a member of
-        * @param value the explicit string value of the property
-        */
-       public Property make(PropertyList propertyList, String value, FObj fo)
-               throws FOPException {
-               return new SVGStyle(propertyList, new StyleData(value));
-       }
-               
-       /** 
-        * make an SVG Length property with the default value.
-        *
-        * @param propertyList the property list the property is a member of
-        */
-       public Property make(PropertyList propertyList) throws FOPException {
-               return make(propertyList, "", null);
-       }
-       }
-
-       /**
-        * returns the maker for this object.
-        *
-        * @return the maker for SVG Length objects
-        */
-       public static Property.Maker maker(String propName) {
-       return new SVGStyle.Maker();
-       }
-
-       protected StyleData style;
-       
-       /**
-        * construct an SVG length (called by the Maker).
-        *
-        * @param propertyList the property list this is a member of
-        * @param explicitValue the explicit value as a Length object
-        */
-       protected SVGStyle(PropertyList propertyList, StyleData explicitValue) {
-       this.propertyList = propertyList;
-       this.style = explicitValue;
-       }
-
-       /**
-        * get the length
-        *
-        * @return the length as a Length object
-        */
-       public CSSStyleDeclaration getStyle()
-       {
-               return this.style.getStyle();
-       }
+
+    /**
+     * inner class for making SVG Length objects.
+     */
+    public static class Maker extends Property.Maker {
+
+        /**
+         * whether this property is inherited or not.
+         *
+         * @return is this inherited?
+         */
+        public boolean isInherited() {
+            return false;
+        }
+
+        /**
+         * make an SVG Length property with the given value.
+         *
+         * @param propertyList the property list this is a member of
+         * @param value the explicit string value of the property
+         */
+        public Property make(PropertyList propertyList, String value,
+                             FObj fo) throws FOPException {
+            return new SVGStyle(propertyList, new StyleData(value));
+        }
+
+        /**
+         * make an SVG Length property with the default value.
+         *
+         * @param propertyList the property list the property is a member of
+         */
+        public Property make(PropertyList propertyList)
+        throws FOPException {
+            return make(propertyList, "", null);
+        }
+    }
+
+    /**
+     * returns the maker for this object.
+     *
+     * @return the maker for SVG Length objects
+     */
+    public static Property.Maker maker(String propName) {
+        return new SVGStyle.Maker();
+    }
+
+    protected StyleData style;
+
+    /**
+     * construct an SVG length (called by the Maker).
+     *
+     * @param propertyList the property list this is a member of
+     * @param explicitValue the explicit value as a Length object
+     */
+    protected SVGStyle(PropertyList propertyList, StyleData explicitValue) {
+        this.style = explicitValue;
+    }
+
+    /**
+     * get the length
+     *
+     * @return the length as a Length object
+     */
+    public CSSStyleDeclaration getStyle() {
+        return this.style.getStyle();
+    }
 }
index e883410e72f578ee6431e7b0d57e9c94306fdafb..83462152583bf03398e5348630e180383646c679 100644 (file)
@@ -1,36 +1,36 @@
-/*-- $Id$ -- 
+/*-- $Id$ --
 
  ============================================================================
                    The Apache Software License, Version 1.1
  ============================================================================
+
     Copyright (C) 1999 The Apache Software Foundation. All rights reserved.
+
  Redistribution and use in source and binary forms, with or without modifica-
  tion, are permitted provided that the following conditions are met:
+
  1. Redistributions of  source code must  retain the above copyright  notice,
     this list of conditions and the following disclaimer.
+
  2. Redistributions in binary form must reproduce the above copyright notice,
     this list of conditions and the following disclaimer in the documentation
     and/or other materials provided with the distribution.
+
  3. The end-user documentation included with the redistribution, if any, must
     include  the following  acknowledgment:  "This product includes  software
     developed  by the  Apache Software Foundation  (http://www.apache.org/)."
     Alternately, this  acknowledgment may  appear in the software itself,  if
     and wherever such third-party acknowledgments normally appear.
+
  4. The names "Fop" and  "Apache Software Foundation"  must not be used to
     endorse  or promote  products derived  from this  software without  prior
     written permission. For written permission, please contact
     apache@apache.org.
+
  5. Products  derived from this software may not  be called "Apache", nor may
     "Apache" appear  in their name,  without prior written permission  of the
     Apache Software Foundation.
+
  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
  ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
  (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
  This software  consists of voluntary contributions made  by many individuals
  on  behalf of the Apache Software  Foundation and was  originally created by
- James Tauber <jtauber@jtauber.com>. For more  information on the Apache 
+ James Tauber <jtauber@jtauber.com>. For more  information on the Apache
  Software Foundation, please see <http://www.apache.org/>.
+
  */
 package org.apache.fop.svg;
 
@@ -63,66 +63,69 @@ import java.util.*;
  *
  */
 public class SVGTransform extends Property {
-       
-       /**
-        * inner class for making SVG Length objects.
-        */
-       public static class Maker extends Property.Maker {
-
-       /**
-        * whether this property is inherited or not.
-        *
-        * @return is this inherited?
-        */
-       public boolean isInherited() { return false; }
-       
-       /**
-        * make an SVG Length property with the given value.
-        *
-        * @param propertyList the property list this is a member of
-        * @param value the explicit string value of the property
-        */
-       public Property make(PropertyList propertyList, String value, FObj fo)
-               throws FOPException {
-               return new SVGTransform(propertyList, new TransformData(value));
-       }
-               
-       /** 
-        * make an SVG Length property with the default value.
-        *
-        * @param propertyList the property list the property is a member of
-        */
-       public Property make(PropertyList propertyList) throws FOPException {
-               return make(propertyList, "", null);
-       }
-       }
-
-       /**
-        * returns the maker for this object.
-        *
-        * @return the maker for SVG Length objects
-        */
-       public static Property.Maker maker(String propName) {
-       return new SVGTransform.Maker();
-       }
-
-       protected TransformData trans;
-       
-       /**
-        *
-        * @param propertyList the property list this is a member of
-        * @param explicitValue the explicit value as a Length object
-        */
-       protected SVGTransform(PropertyList propertyList, TransformData explicitValue) {
-       this.propertyList = propertyList;
-       this.trans = explicitValue;
-       }
-
-       /**
-        *
-        * @return the length as a Length object
-        */
-       public SVGAnimatedTransformList getTransform() {
-               return this.trans.getTransform();
-       }
+
+    /**
+     * inner class for making SVG Length objects.
+     */
+    public static class Maker extends Property.Maker {
+
+        /**
+         * whether this property is inherited or not.
+         *
+         * @return is this inherited?
+         */
+        public boolean isInherited() {
+            return false;
+        }
+
+        /**
+         * make an SVG Length property with the given value.
+         *
+         * @param propertyList the property list this is a member of
+         * @param value the explicit string value of the property
+         */
+        public Property make(PropertyList propertyList, String value,
+                             FObj fo) throws FOPException {
+            return new SVGTransform(propertyList, new TransformData(value));
+        }
+
+        /**
+         * make an SVG Length property with the default value.
+         *
+         * @param propertyList the property list the property is a member of
+         */
+        public Property make(PropertyList propertyList)
+        throws FOPException {
+            return make(propertyList, "", null);
+        }
+    }
+
+    /**
+     * returns the maker for this object.
+     *
+     * @return the maker for SVG Length objects
+     */
+    public static Property.Maker maker(String propName) {
+        return new SVGTransform.Maker();
+    }
+
+    protected TransformData trans;
+
+    /**
+     *
+     * @param propertyList the property list this is a member of
+     * @param explicitValue the explicit value as a Length object
+     */
+    protected SVGTransform(PropertyList propertyList,
+                           TransformData explicitValue) {
+        this.trans = explicitValue;
+    }
+
+    /**
+     *
+     * @return the length as a Length object
+     */
+    public SVGAnimatedTransformList getTransform() {
+        return this.trans.getTransform();
+    }
 }
index 74f74a7ece77c931a87fef6b1c44d1f419d3c51b..300aede9e83fb6fee69c96a2e5d626eb745afad8 100644 (file)
@@ -1,36 +1,36 @@
-/*-- $Id$ -- 
+/*-- $Id$ --
 
  ============================================================================
                    The Apache Software License, Version 1.1
  ============================================================================
+
     Copyright (C) 1999 The Apache Software Foundation. All rights reserved.
+
  Redistribution and use in source and binary forms, with or without modifica-
  tion, are permitted provided that the following conditions are met:
+
  1. Redistributions of  source code must  retain the above copyright  notice,
     this list of conditions and the following disclaimer.
+
  2. Redistributions in binary form must reproduce the above copyright notice,
     this list of conditions and the following disclaimer in the documentation
     and/or other materials provided with the distribution.
+
  3. The end-user documentation included with the redistribution, if any, must
     include  the following  acknowledgment:  "This product includes  software
     developed  by the  Apache Software Foundation  (http://www.apache.org/)."
     Alternately, this  acknowledgment may  appear in the software itself,  if
     and wherever such third-party acknowledgments normally appear.
+
  4. The names "Fop" and  "Apache Software Foundation"  must not be used to
     endorse  or promote  products derived  from this  software without  prior
     written permission. For written permission, please contact
     apache@apache.org.
+
  5. Products  derived from this software may not  be called "Apache", nor may
     "Apache" appear  in their name,  without prior written permission  of the
     Apache Software Foundation.
+
  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
  ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
  (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
  This software  consists of voluntary contributions made  by many individuals
  on  behalf of the Apache Software  Foundation and was  originally created by
- James Tauber <jtauber@jtauber.com>. For more  information on the Apache 
+ James Tauber <jtauber@jtauber.com>. For more  information on the Apache
  Software Foundation, please see <http://www.apache.org/>.
+
  */
 package org.apache.fop.svg;
 
@@ -61,71 +61,71 @@ import java.util.*;
  *
  */
 public class TextProperty extends Property {
-       
-       /**
-        * inner class for making SVG Length objects.
-        */
-       public static class Maker extends Property.Maker {
-
-       /**
-        * whether this property is inherited or not.
-        *
-        * @return is this inherited?
-        */
-       public boolean isInherited() { return false; }
-       
-       /**
-        * make an SVG Length property with the given value.
-        *
-        * @param propertyList the property list this is a member of
-        * @param value the explicit string value of the property
-        */
-       public Property make(PropertyList propertyList, String value, FObj fo)
-               throws FOPException {
-               return new TextProperty(propertyList, value);
-       }
-               
-       /** 
-        * make an SVG Length property with the default value.
-        *
-        * @param propertyList the property list the property is a member of
-        */
-       public Property make(PropertyList propertyList) throws FOPException {
-               return make(propertyList, "", null);
-       }
-       }
-
-       /**
-        * returns the maker for this object.
-        *
-        * @return the maker for SVG Length objects
-        */
-       public static Property.Maker maker() {
-       return new TextProperty.Maker();
-       }
-
-       /** the length as a Length object */
-       protected String str;
-       
-       /**
-        * construct an SVG length (called by the Maker).
-        *
-        * @param propertyList the property list this is a member of
-        * @param explicitValue the explicit value as a Length object
-        */
-       protected TextProperty(PropertyList propertyList, String s)
-       {
-               this.propertyList = propertyList;
-               this.str = s;
-       }
-
-       /**
-        * get the length
-        *
-        * @return the length as a Length object
-        */
-       public String getString()
-       {
-               return this.str;
-       }
+
+    /**
+     * inner class for making SVG Length objects.
+     */
+    public static class Maker extends Property.Maker {
+
+        /**
+         * whether this property is inherited or not.
+         *
+         * @return is this inherited?
+         */
+        public boolean isInherited() {
+            return false;
+        }
+
+        /**
+         * make an SVG Length property with the given value.
+         *
+         * @param propertyList the property list this is a member of
+         * @param value the explicit string value of the property
+         */
+        public Property make(PropertyList propertyList, String value,
+                             FObj fo) throws FOPException {
+            return new TextProperty(propertyList, value);
+        }
+
+        /**
+         * make an SVG Length property with the default value.
+         *
+         * @param propertyList the property list the property is a member of
+         */
+        public Property make(PropertyList propertyList)
+        throws FOPException {
+            return make(propertyList, "", null);
+        }
+    }
+
+    /**
+     * returns the maker for this object.
+     *
+     * @return the maker for SVG Length objects
+     */
+    public static Property.Maker maker() {
+        return new TextProperty.Maker();
+    }
+
+    /** the length as a Length object */
+    protected String str;
+
+    /**
+     * construct an SVG length (called by the Maker).
+     *
+     * @param propertyList the property list this is a member of
+     * @param explicitValue the explicit value as a Length object
+     */
+    protected TextProperty(PropertyList propertyList, String s) {
+        this.str = s;
+    }
+
+    /**
+     * get the length
+     *
+     * @return the length as a Length object
+     */
+    public String getString() {
+        return this.str;
+    }
 }