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

fr.lteconsulting.hexa.client.LocalStorage Maven / Gradle / Ivy

The newest version!
package fr.lteconsulting.hexa.client;

import com.google.gwt.storage.client.Storage;

public class LocalStorage
{
	private final static Storage STORE;

	static
	{
		STORE = Storage.getLocalStorageIfSupported();
	}

	public static boolean isSupported()
	{
		return STORE != null;
	}

	public static int getLength()
	{
		if( STORE == null )
			return -1;
		return STORE.getLength();
	}

	public static void clear()
	{
		if( STORE == null )
			return;

		STORE.clear();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy