com.vaadin.polymer.request.widget.event.RequestEvent Maven / Gradle / Ivy
/*
* This code was generated with Vaadin Web Component GWT API Generator,
* from iron-ajax project by The Polymer Authors
* that is licensed with http://polymer.github.io/LICENSE.txt license.
*/
package com.vaadin.polymer.request.widget.event;
import com.google.gwt.event.shared.GwtEvent;
import com.google.gwt.core.client.JavaScriptObject;
/**
* Fired when a request is sent.
*/
public class RequestEvent extends GwtEvent {
public static Type TYPE = new Type();
private com.vaadin.polymer.request.element.event.RequestEvent nativeEvent;
public RequestEvent(com.vaadin.polymer.request.element.event.RequestEvent nativeEvent) {
this.nativeEvent = nativeEvent;
}
public Type getAssociatedType() {
return TYPE;
}
protected void dispatch(RequestEventHandler handler) {
handler.onRequest(this);
}
public com.vaadin.polymer.request.element.event.RequestEvent getNativeEvent() {
return nativeEvent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy