Skip to main content
summaryrefslogtreecommitdiffstats
blob: a73cc9709088b7db5a8ceb209a780ee06cc4331c (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;

/*
 * Licensed Materials - Property of IBM,
 * (c) Copyright IBM Corp. 1998, 2000  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