summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGRect.java
blob: c55453ce366165e671b98ebd69cda407ccaabb13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGRect {
  public float getX( );
  public void      setX( float x )
                       throws DOMException;
  public float getY( );
  public void      setY( float y )
                       throws DOMException;
  public float getWidth( );
  public void      setWidth( float width )
                       throws DOMException;
  public float getHeight( );
  public void      setHeight( float height )
                       throws DOMException;
}