Code

updated spanish.nsh and inkscape.nsi to reflect latest file-changes
[inkscape.git] / trunk / src / bind / java / org / w3c / dom / svg / SVGPathSegArcAbs.java
2 package org.w3c.dom.svg;
4 import org.w3c.dom.DOMException;
6 public interface SVGPathSegArcAbs extends 
7                SVGPathSeg {
8   public float   getX( );
9   public void      setX( float x )
10                        throws DOMException;
11   public float   getY( );
12   public void      setY( float y )
13                        throws DOMException;
14   public float   getR1( );
15   public void      setR1( float r1 )
16                        throws DOMException;
17   public float   getR2( );
18   public void      setR2( float r2 )
19                        throws DOMException;
20   public float   getAngle( );
21   public void      setAngle( float angle )
22                        throws DOMException;
23   public boolean getLargeArcFlag( );
24   public void      setLargeArcFlag( boolean largeArcFlag )
25                        throws DOMException;
26   public boolean getSweepFlag( );
27   public void      setSweepFlag( boolean sweepFlag )
28                        throws DOMException;
29 }