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

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

import java.util.EventListener;

public interface CTabFolderListener {
	public void itemClosed(CTabFolderEvent event);
}

Back to the top