com.vaadin.polymer.iron.widget.event.IronFormErrorEvent Maven / Gradle / Ivy
The newest version!
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from iron-form 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.dom.client.DomEvent;
import com.google.gwt.core.client.JsArray;
import com.google.gwt.core.client.JavaScriptObject;
/**
* Fired after the form is submitted and an error is received. An
IronRequestElement is included as the event.detail object.
*/
public class IronFormErrorEvent extends DomEvent {
public static Type TYPE = new Type(
com.vaadin.polymer.iron.event.IronFormErrorEvent.NAME, new IronFormErrorEvent());
public IronFormErrorEvent() {
}
public Type getAssociatedType() {
return TYPE;
}
protected void dispatch(IronFormErrorEventHandler handler) {
handler.onIronFormError(this);
}
public com.vaadin.polymer.iron.event.IronFormErrorEvent getPolymerEvent() {
return (com.vaadin.polymer.iron.event.IronFormErrorEvent)super.getNativeEvent();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy