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

js.web.dom.WebKitPoint Maven / Gradle / Ivy

package js.web.dom;

import js.lang.Any;
import org.teavm.jso.JSBody;
import org.teavm.jso.JSProperty;


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

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

    @JSBody(params = "x", script = "return new WebKitPoint(x)")
    static WebKitPoint create(double x) {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSBody(params = {"x", "y"}, script = "return new WebKitPoint(x, y)")
    static WebKitPoint create(double x, double y) {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSProperty
    double getX();

    @JSProperty
    void setX(double x);

    @JSProperty
    double getY();

    @JSProperty
    void setY(double y);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy