18 lines
415 B
Java
18 lines
415 B
Java
package org.w3c.dom.svg;
|
|
|
|
import org.w3c.dom.events.EventTarget;
|
|
|
|
public interface SVGRectElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, EventTarget {
|
|
SVGAnimatedLength getHeight();
|
|
|
|
SVGAnimatedLength getRx();
|
|
|
|
SVGAnimatedLength getRy();
|
|
|
|
SVGAnimatedLength getWidth();
|
|
|
|
SVGAnimatedLength getX();
|
|
|
|
SVGAnimatedLength getY();
|
|
}
|