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