summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGPathSegLinetoVerticalRel.java
blob: 5a69a836bc818d0cce50593e3c5c6c29f85fcd86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGPathSegLinetoVerticalRel extends 
               SVGPathSeg {
  public float   getY( );
  public void      setY( float y )
                       throws DOMException;
}