summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/event/dd/DropEvent.java
blob: 546da317f63a9f5048813f8d50d5c2acac13b40c (plain)
1
2
3
4
5
6
7
8
9
10
package com.vaadin.event.dd;

import com.vaadin.event.Transferable;

public class DropEvent extends DragAndDropEvent {

    public DropEvent(Transferable tr, TargetDetails details) {
        super(tr, details);
    }
}