aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/main/java/com/vaadin/tests/dnd/Html5FileDragAndDropUploadWithManualPush.java
blob: 22b63aacb226f2138e22858664b5e73dec75358e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.vaadin.tests.dnd;

import com.vaadin.annotations.Push;
import com.vaadin.shared.communication.PushMode;

@Push(PushMode.MANUAL)
public class Html5FileDragAndDropUploadWithManualPush
        extends Html5FileDragAndDropUpload {
    public Html5FileDragAndDropUploadWithManualPush() {
        super(true);
    }
}