Import views plugins
[deliverable/tracecompass.git] / tmf / org.lttng.scope.tmf2.views.core / src / org / lttng / scope / tmf2 / views / core / timegraph / model / render / LineThickness.java
1 /*
2 * Copyright (C) 2017 EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
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
10 package org.lttng.scope.tmf2.views.core.timegraph.model.render;
11
12 /**
13 * Headless definitions of possible values of state interval line thicknesses
14 */
15 public enum LineThickness {
16
17 /** Normal, full thickness */
18 NORMAL,
19 /**
20 * Small thickness, should be between {@link #NORMAL} and {@link #TINY} and
21 * distinguishable from those two.
22 */
23 SMALL,
24 /**
25 * Tiny line thickness. The line should be as small as possible but still
26 * have the color distinguishable.
27 */
28 TINY
29
30 }
This page took 0.037432 seconds and 5 git commands to generate.