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

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

package js.web.dom;

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


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

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

    @JSProperty
    String getValue();

    @JSProperty
    void setValue(String value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy