summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGPathSegLinetoAbs.java
blob: a4f55b9fae64f06f316c9f48a4f04c331e56cb47 (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 SVGPathSegLinetoAbs extends 
               SVGPathSeg {
  public float   getX( );
  public void      setX( float x )
                       throws DOMException;
  public float   getY( );
  public void      setY( float y )
                       throws DOMException;
}