Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / statesystem / Messages.java
CommitLineData
7692e512 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
7692e512
AM
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
2bdf0193 13package org.eclipse.tracecompass.tmf.ui.views.statesystem;
7692e512
AM
14
15import org.eclipse.osgi.util.NLS;
16
17/**
18 * Localizable strings in the State System Visualizer.
19 *
20 * @author Alexandre Montplaisir
7692e512
AM
21 */
22public class Messages extends NLS {
23
2bdf0193 24 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ui.views.statesystem.messages"; //$NON-NLS-1$
7692e512
AM
25
26 /**
27 * Initializer
28 */
29 static {
30 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
31 }
32
33 /**
34 * Private constructor (static class)
35 */
36 private Messages() {}
37
38 /** Label for the first column */
39 public static String TreeNodeColumnLabel;
40
41 /** Label for the "quark" column" */
42 public static String QuarkColumnLabel;
43
44 /** Label for the "value" column */
45 public static String ValueColumnLabel;
46
ae09c4ad 47 /** Label for the "type" column */
278aa247
FW
48 public static String TypeColumnLabel;
49
7692e512
AM
50 /** Label for the "start time" column */
51 public static String StartTimeColumLabel;
52
53 /** Label for the "end time" column */
54 public static String EndTimeColumLabel;
55
56 /** Label for the "attribute path" column */
57 public static String AttributePathColumnLabel;
58
59 /**
60 * Printing "out of range" in the value column when the current timestamp is
61 * outside of the SS's range.
62 */
63 public static String OutOfRangeMsg;
278aa247 64
ae09c4ad 65 /** Label for the Filter button */
278aa247
FW
66 public static String FilterButton;
67
ae09c4ad 68 /** Label for the type Interger */
278aa247
FW
69 public static String TypeInteger;
70
ae09c4ad 71 /** Label for the type Long */
278aa247
FW
72 public static String TypeLong;
73
ae09c4ad 74 /** Label for type Double */
a3c22e8e
AM
75 public static String TypeDouble;
76
ae09c4ad 77 /** Label for the type String */
278aa247 78 public static String TypeString;
7692e512 79}
This page took 0.081541 seconds and 5 git commands to generate.