ss: Move plugins to Trace Compass namespace
[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 "type" column
49 * @since 2.1*/
50 public static String TypeColumnLabel;
51
52 /** Label for the "start time" column */
53 public static String StartTimeColumLabel;
54
55 /** Label for the "end time" column */
56 public static String EndTimeColumLabel;
57
58 /** Label for the "attribute path" column */
59 public static String AttributePathColumnLabel;
60
61 /**
62 * Printing "out of range" in the value column when the current timestamp is
63 * outside of the SS's range.
64 */
65 public static String OutOfRangeMsg;
66
67 /** Label for the Filter button
68 * @since 2.1*/
69 public static String FilterButton;
70
71 /** Label for the type Interger
72 * @since 2.1*/
73 public static String TypeInteger;
74
75 /** Label for the type Long
76 * @since 2.1*/
77 public static String TypeLong;
78
79 /** Label for type Double
80 * @since 3.0*/
81 public static String TypeDouble;
82
83 /** Label for the type String
84 * @since 2.1*/
85 public static String TypeString;
86 }
This page took 0.035522 seconds and 5 git commands to generate.