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

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

keiron      00/07/26 23:33:19

  Modified:    src/org/apache/fop/dom/svg SVGRectElementImpl.java
  Log:
  added rounded edges vars
  
  Revision  Changes    Path
  1.3       +10 -3     xml-fop/src/org/apache/fop/dom/svg/SVGRectElementImpl.java
  
  Index: SVGRectElementImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/dom/svg/SVGRectElementImpl.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SVGRectElementImpl.java	2000/07/18 05:39:46	1.2
  +++ SVGRectElementImpl.java	2000/07/27 06:33:18	1.3
  @@ -1,4 +1,4 @@
  -/*-- $Id: SVGRectElementImpl.java,v 1.2 2000/07/18 05:39:46 keiron Exp $ -- 
  +/*-- $Id: SVGRectElementImpl.java,v 1.3 2000/07/27 06:33:18 keiron Exp $ -- 
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -64,6 +64,8 @@
   
   	/** y-coordinate of corner */
   	private SVGAnimatedLength y;
  +	private SVGAnimatedLength rx;
  +	private SVGAnimatedLength ry;
   
   	/** width of rectangle */
   	private SVGAnimatedLength width;
  @@ -134,16 +136,21 @@
   
   	public SVGAnimatedLength getRx( )
   	{
  -		return null;
  +		return rx;
   	}
  +
   	public void setRx( SVGAnimatedLength rx )
   	{
  +	    this.rx = rx;
   	}
  +
   	public SVGAnimatedLength getRy( )
   	{
  -		return null;
  +		return ry;
   	}
  +
   	public void setRy( SVGAnimatedLength ry )
   	{
  +	    this.ry = ry;
   	}
   }