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

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
 
public class TransferData {
	public int type;
	
	// attributes specific to set/get
	int length;
	int format;
	int pValue;

	int result;
	
}

Back to the top