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

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

package js.web.dom;


import js.util.collections.ArrayLike;
import org.teavm.jso.JSIndexer;

import javax.annotation.Nullable;


public interface HTMLCollectionOf extends ArrayLike {
    @Nullable
    T item(int index);

    @Nullable
    T namedItem(String name);

    @JSIndexer
    T get(int n);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy