1 2 package org.w3c.dom.svg; 3 4 import org.w3c.dom.events.EventTarget ; 5 6 public interface SVGRectElement extends 7 SVGElement, 8 SVGTests, 9 SVGLangSpace, 10 SVGExternalResourcesRequired, 11 SVGStylable, 12 SVGTransformable, 13 EventTarget { 14 public SVGAnimatedLength getX( ); 15 public SVGAnimatedLength getY( ); 16 public SVGAnimatedLength getWidth( ); 17 public SVGAnimatedLength getHeight( ); 18 public SVGAnimatedLength getRx( ); 19 public SVGAnimatedLength getRy( ); 20 } 21 | Popular Tags |