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

com.github.xpenatan.gdx.backends.teavm.dom.ElementWrapper Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package com.github.xpenatan.gdx.backends.teavm.dom;

import org.teavm.jso.JSMethod;

/**
 * @author xpenatan
 */
public interface ElementWrapper extends NodeWrapper {

    int getScrollTop();

    int getScrollLeft();

    int getClientWidth();

    int getClientHeight();

    void setAttribute(String qualifiedName, String value);

    StyleWrapper getStyle();


    @JSMethod
    void remove();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy