Code

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