com.vaadin.polymer.iron.element.event.IronChangeEvent Maven / Gradle / Ivy
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from paper-radio-button project by The Polymer Authors
* 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 the checked state changes.
*/
@JsType
public interface IronChangeEvent extends Event {
static final String NAME = "iron-change";
public abstract class Listener implements EventListener {
protected abstract void handleEvent(IronChangeEvent event);
@Override
public void handleEvent(Event event) {
handleEvent((IronChangeEvent) event);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy