comparison org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnLayoutData.d @ 12:bc29606a740c

Added dwt-addons in original directory structure of eclipse.org
author Frank Benoit <benoit@tionex.de>
date Sat, 14 Mar 2009 18:23:29 +0100
parents
children
comparison
equal deleted inserted replaced
11:43904fec5dca 12:bc29606a740c
1 /*******************************************************************************
2 * Copyright (c) 2000, 2008 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module org.eclipse.jface.viewers.ColumnLayoutData;
14
15 import java.lang.all;
16
17 /**
18 * An abstract column layout data describing the information needed
19 * (by <code>TableLayout</code>) to properly lay out a table.
20 * <p>
21 * This class is not intended to be subclassed outside the framework.
22 * </p>
23 * @noextend This class is not intended to be subclassed by clients.
24 */
25 public abstract class ColumnLayoutData {
26
27 /**
28 * Indicates whether the column is resizable.
29 */
30 public bool resizable;
31
32 /**
33 * Creates a new column layout data object.
34 *
35 * @param resizable <code>true</code> if the column is resizable, and <code>false</code> if not
36 */
37 protected this(bool resizable) {
38 this.resizable = resizable;
39 }
40 }