You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Html5FileDragAndDropUploadWithManualPush.java 324B

123456789101112
  1. package com.vaadin.tests.dnd;
  2. import com.vaadin.annotations.Push;
  3. import com.vaadin.shared.communication.PushMode;
  4. @Push(PushMode.MANUAL)
  5. public class Html5FileDragAndDropUploadWithManualPush
  6. extends Html5FileDragAndDropUpload {
  7. public Html5FileDragAndDropUploadWithManualPush() {
  8. super(true);
  9. }
  10. }