]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/DragSourceListenerFactory.java
Fixed all line endings of the repository
[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;
2
3 import org.eclipse.jface.viewers.ISelectionProvider;
4 import org.eclipse.swt.dnd.DragSourceListener;
5 import org.eclipse.swt.dnd.Transfer;
6
7 public interface DragSourceListenerFactory {
8     DragSourceListener get(ISelectionProvider selectionProvider);
9     Transfer[] getTransfers();
10 }