Code

updated spanish.nsh and inkscape.nsi to reflect latest file-changes
[inkscape.git] / trunk / src / bind / java / org / w3c / dom / svg / SVGImageElement.java
2 package org.w3c.dom.svg;
4 import org.w3c.dom.events.EventTarget;
6 public interface SVGImageElement extends 
7                SVGElement,
8                SVGURIReference,
9                SVGTests,
10                SVGLangSpace,
11                SVGExternalResourcesRequired,
12                SVGStylable,
13                SVGTransformable,
14                EventTarget {
15   public SVGAnimatedLength getX( );
16   public SVGAnimatedLength getY( );
17   public SVGAnimatedLength getWidth( );
18   public SVGAnimatedLength getHeight( );
19   public SVGAnimatedPreserveAspectRatio getPreserveAspectRatio( );
20 }