comparison dwt/custom/CTabFolderAdapter.d @ 41:6337764516f1

Sync dwt/custom with dwt-linux (took copy of complete folder)
author Frank Benoit <benoit@tionex.de>
date Tue, 07 Oct 2008 16:29:55 +0200
parents f565d3a95c0a
children
comparison
equal deleted inserted replaced
40:fbe68c33eeee 41:6337764516f1
1 /******************************************************************************* 1 /*******************************************************************************
2 * Copyright (c) 2000, 2004 IBM Corporation and others. 2 * Copyright (c) 2000, 2008 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0 4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html 6 * http://www.eclipse.org/legal/epl-v10.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 *
11 * Port to the D programming language: 10 * Port to the D programming language:
12 * Jacob Carlborg <jacob.carlborg@gmail.com> 11 * Frank Benoit <benoit@tionex.de>
13 *******************************************************************************/ 12 *******************************************************************************/
14 module dwt.custom.CTabFolderAdapter; 13 module dwt.custom.CTabFolderAdapter;
15
16 import dwt.custom.CTabFolderEvent; 14 import dwt.custom.CTabFolderEvent;
17 import dwt.custom.CTabFolderListener; 15 import dwt.custom.CTabFolderListener;
18 16
17
18 /**
19 * This adapter class provides a default implementation for the
20 * method described by the <code>CTabFolderListener</code> interface.
21 *
22 * @see CTabFolderListener
23 * @see CTabFolderEvent
24 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
25 */
19 public class CTabFolderAdapter : CTabFolderListener { 26 public class CTabFolderAdapter : CTabFolderListener {
20 public void itemClosed (CTabFolderEvent event) { 27 public void itemClosed(CTabFolderEvent event){}
21 }
22 } 28 }