All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.dom.svg.SVGPathSegLinetoVerticalRel Maven / Gradle / Ivy

package js.web.dom.svg;

import org.teavm.jso.JSBody;
import org.teavm.jso.JSProperty;


public interface SVGPathSegLinetoVerticalRel extends SVGPathSeg {
    @JSBody(script = "return SVGPathSegLinetoVerticalRel.prototype")
    static SVGPathSegLinetoVerticalRel prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSBody(script = "return new SVGPathSegLinetoVerticalRel()")
    static SVGPathSegLinetoVerticalRel create() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSProperty
    double getY();

    @JSProperty
    void setY(double y);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy