Skip to main content
summaryrefslogtreecommitdiffstats
blob: ab728a91eaf84ed880175f36ba09a274a6b6a2fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package org.eclipse.swt.dnd;

/*
 * Licensed Materials - Property of IBM,
 * (c) Copyright IBM Corp. 1998, 2000  All Rights Reserved
 */

public class DragSourceAdapter implements DragSourceListener {
	public void dragStart(DragSourceEvent event){};
	public void dragFinished(DragSourceEvent event){};
	public void dragSetData(DragSourceEvent event){};
}

Back to the top