mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
jso: add vararg versions of 'add' methods to DomTokenList
This commit is contained in:
parent
582fcf904c
commit
994e01ec9d
|
@ -30,7 +30,15 @@ public interface DOMTokenList extends JSObject {
|
||||||
|
|
||||||
void add(String token);
|
void add(String token);
|
||||||
|
|
||||||
|
void add(String token1, String token2);
|
||||||
|
|
||||||
|
void add(String... tokens);
|
||||||
|
|
||||||
void remove(String token);
|
void remove(String token);
|
||||||
|
|
||||||
|
void remove(String token1, String token2);
|
||||||
|
|
||||||
|
void remove(String... tokens);
|
||||||
|
|
||||||
boolean toggle(String token);
|
boolean toggle(String token);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user