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

com.vaadin.polymer.iron.element.event.IronLocalstorageLoadEvent Maven / Gradle / Ivy

There is a newer version: 1.9.3.1
Show newest version
/*
 * This code was generated with Vaadin Web Component GWT API Generator, 
 * from iron-localstorage project by unknown author
 * that is licensed with http://polymer.github.io/LICENSE.txt license.
 */
package com.vaadin.polymer.iron.element.event;

import com.vaadin.polymer.elemental.*;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.core.client.js.JsProperty;
import com.google.gwt.core.client.js.JsType;

/**
 * 

Fired when value loads from localStorage.

*/ @JsType public interface IronLocalstorageLoadEvent extends Event { static final String NAME = "iron-localstorage-load"; @Override @JsProperty Detail getDetail(); @JsType interface Detail extends Event.Detail { /** *
externalChange: true if change occured in different window.
         * 
*/ @JsProperty JavaScriptObject getDetail(); } public abstract class Listener implements EventListener { protected abstract void handleEvent(IronLocalstorageLoadEvent event); @Override public void handleEvent(Event event) { handleEvent((IronLocalstorageLoadEvent) event); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy