summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGForeignObjectElement.java
blob: 794e7a8e878ac0dac59c6319a893b910346476c5 (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 SVGForeignObjectElement extends 
               SVGElement,
               SVGTests,
               SVGLangSpace,
               SVGExternalResourcesRequired,
               SVGStylable,
               SVGTransformable,
               EventTarget {
  public SVGAnimatedLength getX( );
  public SVGAnimatedLength getY( );
  public SVGAnimatedLength getWidth( );
  public SVGAnimatedLength getHeight( );
}