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

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

import org.eclipse.swt.events.TypedEvent;
import org.eclipse.swt.widgets.*;

public class CTabFolderEvent extends TypedEvent {
 	public Widget item;
 	public boolean doit;
 	
CTabFolderEvent(Widget w) {
	super(w);
}
}

Back to the top