Code

dos to unix conversion
[inkscape.git] / src / bind / java / org / w3c / dom / svg / SVGRect.java
2 package org.w3c.dom.svg;
4 import org.w3c.dom.DOMException;
6 public interface SVGRect {
7   public float getX( );
8   public void      setX( float x )
9                        throws DOMException;
10   public float getY( );
11   public void      setY( float y )
12                        throws DOMException;
13   public float getWidth( );
14   public void      setWidth( float width )
15                        throws DOMException;
16   public float getHeight( );
17   public void      setHeight( float height )
18                        throws DOMException;
19 }