We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
String TypedTransfer::transferId()
1 parent 1f2a3d8 commit 36ad6ceCopy full SHA for 36ad6ce
durian-swt/src/main/java/com/diffplug/common/swt/dnd/TypedTransfer.java
@@ -23,6 +23,11 @@
23
24
/** A strongly-typed custom transfer type. */
25
public abstract class TypedTransfer<T> extends ByteArrayTransfer {
26
+ /** The transfer id. */
27
+ public @Nullable String transferId() {
28
+ return null;
29
+ }
30
+
31
public abstract T getValue(DropTargetEvent e);
32
33
public abstract void setValue(DragSourceEvent e, T value);
0 commit comments