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

com.vaadin.polymer.elemental.DOMTokenList Maven / Gradle / Ivy

The newest version!
package com.vaadin.polymer.elemental;

import static jsinterop.annotations.JsPackage.GLOBAL;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;

@JsType(isNative=true, namespace=GLOBAL)
public interface DOMTokenList {

    @JsProperty
    int getLength();

    boolean contains();

    void add(String token);

    void remove(String token);

    void replace(String token, String replacement);

    boolean toggle(String token);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy