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