您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }