blob: 434ae732c1849a138bd7ca42b23c3f9e7e52270f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.client.ui.dd;
import com.google.gwt.core.client.JavaScriptObject;
/**
* Wrapper for html5 File object.
*/
public class VHtml5File extends JavaScriptObject {
protected VHtml5File() {
};
public native final String getName()
/*-{
return this.name;
}-*/;
public native final String getType()
/*-{
return this.type;
}-*/;
public native final int getSize()
/*-{
return this.size ? this.size : 0;
}-*/;
}
|