ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / widgets / virtualtable / ColumnData.java
1 /*******************************************************************************
2 * Copyright (c) 2010, 2012 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Matthew Khouzam - Extracted from TmfEventsView
11 ******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.widgets.virtualtable;
14
15 /**
16 * ColumnData
17 *
18 * @author Matthew Khouzam
19 * @deprecated Use {@link org.eclipse.linuxtools.tmf.ui.viewers.events.columns.TmfEventTableColumn} instead.
20 */
21 @Deprecated
22 public class ColumnData {
23 /**
24 * The title of the column
25 */
26 public final String header;
27 /**
28 * the width of the column in pixels
29 */
30 public final int width;
31 /**
32 * the alignment of the column
33 */
34 public final int alignment;
35
36 /**
37 * Constructor
38 * @param h header (title)
39 * @param w width
40 * @param a alignment
41 */
42 public ColumnData(String h, int w, int a) {
43 header = h;
44 width = w;
45 alignment = a;
46 }
47
48 }
This page took 0.038131 seconds and 5 git commands to generate.