summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGPathSegMovetoAbs.java
blob: 20bd8250e792d52a025c29e774f3d3fd6094727d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGPathSegMovetoAbs extends 
               SVGPathSeg {
  public float   getX( );
  public void      setX( float x )
                       throws DOMException;
  public float   getY( );
  public void      setY( float y )
                       throws DOMException;
}