com.vaadin.polymer.iron.element.event.IronInputValidateEvent Maven / Gradle / Ivy
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from iron-input 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;
/**
* The iron-input-validate
event is fired whenever validate()
is called.
*/
@JsType
public interface IronInputValidateEvent extends Event {
static final String NAME = "iron-input-validate";
public abstract class Listener implements EventListener {
protected abstract void handleEvent(IronInputValidateEvent event);
@Override
public void handleEvent(Event event) {
handleEvent((IronInputValidateEvent) event);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy