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

package org.w3c.dom.svg;

import org.w3c.dom.events.EventTarget;

public interface SVGCircleElement extends 
               SVGElement,
               SVGTests,
               SVGLangSpace,
               SVGExternalResourcesRequired,
               SVGStylable,
               SVGTransformable,
               EventTarget {
  public SVGAnimatedLength getCx( );
  public SVGAnimatedLength getCy( );
  public SVGAnimatedLength getR( );
}