All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.polymer.vaadin.event.UploadRetryEvent Maven / Gradle / Ivy

The newest version!
/*
 * This code was generated with Vaadin Web Component GWT API Generator, 
 * from vaadin-upload project by Vaadin Ltd
 * that is licensed with Apache-2.0 license.
 */
package com.vaadin.polymer.vaadin.event;

import com.vaadin.polymer.elemental.*;
import com.google.gwt.core.client.JsArray;
import com.google.gwt.core.client.JavaScriptObject;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;

/**
 * 

Fired when retry upload is requested. If the default is prevented, then
retry would not be performed.

*/ @JsType(isNative=true) public interface UploadRetryEvent extends Event { @JsOverlay static final String NAME = "upload-retry"; @Override @JsProperty Detail getDetail(); @JsType(isNative=true) interface Detail extends Event.Detail { /** * */ @JsProperty JavaScriptObject getDetail(); /** *

the previous upload xhr

*/ @JsProperty JavaScriptObject getXhr(); /** *

the file being uploaded

*/ @JsProperty JavaScriptObject getFile(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy