comparison dwt/widgets/ExpandBar.d @ 259:c0d810de7093

Update SWT 3.4M7 to 3.4
author Frank Benoit <benoit@tionex.de>
date Sun, 29 Jun 2008 14:33:38 +0200
parents 08789b28bdf3
children
comparison
equal deleted inserted replaced
257:cc1d3de0e80b 259:c0d810de7093
1 /******************************************************************************* 1 /*******************************************************************************
2 * Copyright (c) 2000, 2006 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 *
50 * 50 *
51 * @see ExpandItem 51 * @see ExpandItem
52 * @see ExpandEvent 52 * @see ExpandEvent
53 * @see ExpandListener 53 * @see ExpandListener
54 * @see ExpandAdapter 54 * @see ExpandAdapter
55 * @see <a href="http://www.eclipse.org/swt/snippets/#expandbar">ExpandBar snippets</a>
56 * @see <a href="http://www.eclipse.org/swt/examples.php">DWT Example: ControlExample</a>
57 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
55 * 58 *
56 * @since 3.2 59 * @since 3.2
57 */ 60 */
58 public class ExpandBar : Composite { 61 public class ExpandBar : Composite {
59 62
670 } 673 }
671 674
672 /** 675 /**
673 * Sets the receiver's spacing. Spacing specifies the number of pixels allocated around 676 * Sets the receiver's spacing. Spacing specifies the number of pixels allocated around
674 * each item. 677 * each item.
678 *
679 * @param spacing the spacing around each item
675 * 680 *
676 * @exception DWTException <ul> 681 * @exception DWTException <ul>
677 * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> 682 * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
678 * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> 683 * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
679 * </ul> 684 * </ul>