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

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( );
}