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

org.stjs.javascript.Storage Maven / Gradle / Ivy

The newest version!
package org.stjs.javascript;

public class Storage extends Map {
	public native  T getItem(String key);

	public native void setItem(String key, Object data);

	protected Storage() {
		super();
	}

	public void clear() {

		for (String key : this) {
			$delete(key);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy