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

com.github.xpenatan.gdx.backends.teavm.dom.DocumentWrapper 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.JSProperty;

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

    public ElementWrapper getDocumentElement();

    @JSProperty
    public String getVisibilityState();

    public String getCompatMode();

    HTMLElementWrapper getElementById(String id);

    public NodeWrapper createTextNode(NodeWrapper text);

    public HTMLElementWrapper createElement(String value);

    public NodeWrapper getBody();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy