tmf: Update Javadoc throughout tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / widgets / timegraph / widgets / TimeGraphItem.java
CommitLineData
fb5cad3d
PT
1/*******************************************************************************\r
2 * Copyright (c) 2012 Ericsson\r
013a5f1c 3 *\r
fb5cad3d
PT
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
013a5f1c 8 *\r
fb5cad3d
PT
9 * Contributors:\r
10 * Patrick Tasse - Initial API and implementation\r
11 *******************************************************************************/\r
12\r
13package org.eclipse.linuxtools.tmf.ui.widgets.timegraph.widgets;\r
14\r
15import java.util.ArrayList;\r
16import java.util.List;\r
17\r
18import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model.ITimeGraphEntry;\r
19\r
013a5f1c
AM
20/**\r
21 * Item in the generic time graph view\r
22 *\r
23 * @version 1.0\r
24 * @author Patrick Tasse\r
25 */\r
fb5cad3d
PT
26public class TimeGraphItem {\r
27 public boolean _expanded;\r
28 public boolean _selected;\r
29 public boolean _hasChildren;\r
b83af2c3 30 public int itemHeight;\r
fb5cad3d
PT
31 public int level;\r
32 public List<TimeGraphItem> children;\r
33 public String _name;\r
34 public ITimeGraphEntry _trace;\r
35\r
36 public TimeGraphItem(ITimeGraphEntry trace, String name, int level) {\r
37 this._trace = trace;\r
38 this._name = name;\r
39 this.level = level;\r
40 this.children = new ArrayList<TimeGraphItem>();\r
41 }\r
42\r
43 @Override\r
44 public String toString() {\r
45 return _name;\r
46 }\r
47}
This page took 0.028083 seconds and 5 git commands to generate.