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

package org.w3c.dom.svg;

import org.w3c.dom.events.EventTarget;

public interface SVGEllipseElement extends 
               SVGElement,
               SVGTests,
               SVGLangSpace,
               SVGExternalResourcesRequired,
               SVGStylable,
               SVGTransformable,
               EventTarget {
  public SVGAnimatedLength getCx( );
  public SVGAnimatedLength getCy( );
  public SVGAnimatedLength getRx( );
  public SVGAnimatedLength getRy( );
}