2010-07-28 Francois Chouinard <fchouinard@gmail.com> Fix for Bug316349 + a bunch...
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / widgets / ColumnData.java
1 /*******************************************************************************
2 * Copyright (c) 2010 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;
14
15 public class ColumnData {
16 public final String header;
17 public final int width;
18 public final int alignment;
19
20 public ColumnData(String h, int w, int a) {
21 header = h;
22 width = w;
23 alignment = a;
24 }
25
26 }
This page took 0.032579 seconds and 6 git commands to generate.