com.vaadin.polymer.iron.widget.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.widget.event;
import com.google.gwt.event.shared.GwtEvent;
import com.google.gwt.core.client.JavaScriptObject;
/**
* The iron-input-validate
event is fired whenever validate()
is called.
*/
public class IronInputValidateEvent extends GwtEvent {
public static Type TYPE = new Type();
private com.vaadin.polymer.iron.element.event.IronInputValidateEvent nativeEvent;
public IronInputValidateEvent(com.vaadin.polymer.iron.element.event.IronInputValidateEvent nativeEvent) {
this.nativeEvent = nativeEvent;
}
public Type getAssociatedType() {
return TYPE;
}
protected void dispatch(IronInputValidateEventHandler handler) {
handler.onIronInputValidate(this);
}
public com.vaadin.polymer.iron.element.event.IronInputValidateEvent getNativeEvent() {
return nativeEvent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy