Revert all luna temporary annotation changes
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / statesystem / Messages.java
CommitLineData
7692e512
AM
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
13package org.eclipse.linuxtools.tmf.ui.views.statesystem;
14
15import 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 */
23public 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
278aa247 48 /** Label for the "type" column
4b121c48 49 * @since 2.1*/
278aa247
FW
50 public static String TypeColumnLabel;
51
7692e512
AM
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;
278aa247
FW
66
67 /** Label for the Filter button
4b121c48 68 * @since 2.1*/
278aa247
FW
69 public static String FilterButton;
70
71 /** Label for the type Interger
4b121c48 72 * @since 2.1*/
278aa247
FW
73 public static String TypeInteger;
74
75 /** Label for the type Long
4b121c48 76 * @since 2.1*/
278aa247
FW
77 public static String TypeLong;
78
79 /** Label for the type String
4b121c48 80 * @since 2.1*/
278aa247 81 public static String TypeString;
7692e512 82}
This page took 0.028404 seconds and 5 git commands to generate.