1 2 package org.w3c.dom.svg; 3 4 import org.w3c.dom.DOMException ; 5 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 } 20 | Popular Tags |