]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
stores all the pattern info
authorKeiron Liddle <keiron@apache.org>
Fri, 10 Nov 2000 00:51:17 +0000 (00:51 +0000)
committerKeiron Liddle <keiron@apache.org>
Fri, 10 Nov 2000 00:51:17 +0000 (00:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193758 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/dom/svg/SVGPatternElementImpl.java

index 1a5e16a70bc60a0bd74d53100dbcc75504fe324e..4464822067e563fa663e3bdfd00329f95b8d027a 100644 (file)
@@ -57,79 +57,95 @@ import org.w3c.dom.svg.*;
  *
  */
 public class SVGPatternElementImpl extends SVGURIReferenceImpl implements SVGPatternElement {
+    SVGAnimatedEnumeration patternUnits;
+    SVGAnimatedTransformList patternTransform;
+    SVGAnimatedLength x;
+    SVGAnimatedLength y;
+    SVGAnimatedLength width;
+    SVGAnimatedLength height;
+    SVGAnimatedRect viewBox;
+    SVGAnimatedPreserveAspectRatio preserveAspectRatio;
 
        public SVGPatternElementImpl() {
        }
 
        public SVGAnimatedEnumeration getPatternUnits( )
        {
-               return null;
+               return patternUnits;
        }
 
        public void setPatternUnits( SVGAnimatedEnumeration patternUnits )
        {
+           this.patternUnits = patternUnits;
        }
 
        public SVGAnimatedTransformList getPatternTransform( )
        {
-               return null;
+               return patternTransform;
        }
 
        public void setPatternTransform( SVGAnimatedTransformList patternTransform )
        {
+           this.patternTransform = patternTransform;
        }
 
        public SVGAnimatedLength getX( )
        {
-               return null;
+               return x;
        }
 
        public void setX( SVGAnimatedLength x )
        {
+           this.x = x;
        }
 
        public SVGAnimatedLength getY( )
        {
-               return null;
+               return y;
        }
 
        public void setY( SVGAnimatedLength y )
        {
+           this.y = y;
        }
 
        public SVGAnimatedLength getWidth( )
        {
-               return null;
+               return width;
        }
 
        public void setWidth( SVGAnimatedLength width )
        {
+           this.width = width;
        }
 
        public SVGAnimatedLength getHeight( )
        {
-               return null;
+               return height;
        }
 
        public void setHeight( SVGAnimatedLength height )
        {
+           this.height = height;
        }
 
        public SVGAnimatedRect getViewBox( )
        {
-               return null;
+               return viewBox;
        }
 
        public void setViewBox( SVGAnimatedRect viewBox )
        {
+           this.viewBox = viewBox;
        }
 
        public SVGAnimatedPreserveAspectRatio getPreserveAspectRatio( )
        {
-               return null;
+               return preserveAspectRatio;
        }
 
        public void setPreserveAspectRatio( SVGAnimatedPreserveAspectRatio preserveAspectRatio)
        {
+           this.preserveAspectRatio = preserveAspectRatio;
        }
 }