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

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */

import org.eclipse.swt.widgets.*;

class DNDEvent extends Event {

	public TransferData dataType;
	public TransferData[] dataTypes;
	public int operations;
	public int feedback;
	
}

Back to the top