We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.client.ui.dd.
Class VHtml5File
- java.lang.Object
-
- com.google.gwt.core.client.JavaScriptObject
-
- com.vaadin.client.ui.dd.VHtml5File
-
@Deprecated public class VHtml5File extends com.google.gwt.core.client.JavaScriptObject
Deprecated.Since 8.1, will be replaced by FileDropTargetExtensionConnector and FileDropTargetExtension, https://github.com/vaadin/framework/issues/8891Wrapper for html5 File object.
Author:
Vaadin Ltd
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
VHtml5File()
Deprecated.
Singleton.
-
Method Summary
All Methods Modifier and Type Method Description String
getName()
Deprecated.
Returns the name value.
double
getSize()
Deprecated.
Browser implementations support files >2GB dropped and report the value as long.
String
getType()
Deprecated.
Returns the type value.
-
-
-
Method Detail
-
getName
public final String getName()
Deprecated.Returns the name value.
Returns:
the name
-
getType
public final String getType()
Deprecated.Returns the type value.
Returns:
the type
-
getSize
public final double getSize()
Deprecated.Browser implementations support files >2GB dropped and report the value as long. Due to JSNI limitations this value needs to be sent as double and then cast back to a long value. www.gwtproject.org/doc/latest/DevGuideCodingBasicsJSNI.html#important
Returns:
the size
-
-