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