summaryrefslogblamecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGRectElement.java
blob: aec04b0c104ea066973a2b613acbfa52ebd3dbac (plain) (tree)



















                                             

package org.w3c.dom.svg;

import org.w3c.dom.events.EventTarget;

public interface SVGRectElement extends 
               SVGElement,
               SVGTests,
               SVGLangSpace,
               SVGExternalResourcesRequired,
               SVGStylable,
               SVGTransformable,
               EventTarget {
  public SVGAnimatedLength getX( );
  public SVGAnimatedLength getY( );
  public SVGAnimatedLength getWidth( );
  public SVGAnimatedLength getHeight( );
  public SVGAnimatedLength getRx( );
  public SVGAnimatedLength getRy( );
}