Code

updated spanish.nsh and inkscape.nsi to reflect latest file-changes
[inkscape.git] / trunk / src / bind / java / org / w3c / dom / svg / SVGPathSegCurvetoCubicAbs.java
2 package org.w3c.dom.svg;
4 import org.w3c.dom.DOMException;
6 public interface SVGPathSegCurvetoCubicAbs 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   getX1( );
15   public void      setX1( float x1 )
16                        throws DOMException;
17   public float   getY1( );
18   public void      setY1( float y1 )
19                        throws DOMException;
20   public float   getX2( );
21   public void      setX2( float x2 )
22                        throws DOMException;
23   public float   getY2( );
24   public void      setY2( float y2 )
25                        throws DOMException;
26 }