tmf: Add a state system explorer view
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / statesystem / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013 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 * Alexandre Montplaisir - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.views.statesystem;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Localizable strings in the State System Visualizer.
19 *
20 * @author Alexandre Montplaisir
21 * @since 2.0
22 */
23 public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.views.statesystem.messages"; //$NON-NLS-1$
26
27 /**
28 * Initializer
29 */
30 static {
31 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
32 }
33
34 /**
35 * Private constructor (static class)
36 */
37 private Messages() {}
38
39 /** Label for the first column */
40 public static String TreeNodeColumnLabel;
41
42 /** Label for the "quark" column" */
43 public static String QuarkColumnLabel;
44
45 /** Label for the "value" column */
46 public static String ValueColumnLabel;
47
48 /** Label for the "start time" column */
49 public static String StartTimeColumLabel;
50
51 /** Label for the "end time" column */
52 public static String EndTimeColumLabel;
53
54 /** Label for the "attribute path" column */
55 public static String AttributePathColumnLabel;
56
57 /**
58 * Printing "out of range" in the value column when the current timestamp is
59 * outside of the SS's range.
60 */
61 public static String OutOfRangeMsg;
62 }
This page took 0.040817 seconds and 5 git commands to generate.