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
CommitLineData
9ccc6d01
FC
1/*******************************************************************************\r
2 * Copyright (c) 2010 Ericsson\r
3 * \r
4 * All rights reserved. This program and the accompanying materials are\r
5 * made available under the terms of the Eclipse Public License v1.0 which\r
6 * accompanies this distribution, and is available at\r
7 * http://www.eclipse.org/legal/epl-v10.html\r
8 * \r
9 * Contributors:\r
10 * Matthew Khouzam - Extracted from TmfEventsView\r
11 ******************************************************************************/\r
12\r
13package org.eclipse.linuxtools.tmf.ui.widgets;\r
14\r
15public class ColumnData {\r
16 public final String header;\r
17 public final int width;\r
18 public final int alignment;\r
19\r
20 public ColumnData(String h, int w, int a) {\r
21 header = h;\r
22 width = w;\r
23 alignment = a;\r
24 }\r
25\r
26}\r
This page took 0.024681 seconds and 5 git commands to generate.