]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/DragSourceListenerFactory.java
8fd2e66748396167c6872beccfa2a305f446fa80
[simantics/platform.git] / bundles / org.simantics.browsing.ui.swt / src / org / simantics / browsing / ui / swt / widgets / DragSourceListenerFactory.java
1 package org.simantics.browsing.ui.swt.widgets;\r
2 \r
3 import org.eclipse.jface.viewers.ISelectionProvider;\r
4 import org.eclipse.swt.dnd.DragSourceListener;\r
5 import org.eclipse.swt.dnd.Transfer;\r
6 \r
7 public interface DragSourceListenerFactory {\r
8     DragSourceListener get(ISelectionProvider selectionProvider);\r
9     Transfer[] getTransfers();\r
10 }