tmf: Generalization of the statistics view
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / viewers / statistics / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2012 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 * Mathieu Denis <mathieu.denis@polymtl.ca> - Initial API and Implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.viewers.statistics;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Messages file for statistics view strings.
19 *
20 * @version 2.0
21 * @author Mathieu Denis
22 * @since 2.0
23 */
24 public class Messages extends NLS {
25
26 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.viewers.statistics.messages"; //$NON-NLS-1$
27
28 /**
29 * Level column name
30 */
31 public static String TmfStatisticsView_LevelColumn;
32
33 /**
34 * Level column tool tip.
35 */
36 public static String TmfStatisticsView_LevelColumnTip;
37
38 /**
39 * Number of events column name.
40 */
41 public static String TmfStatisticsView_NbEventsColumn;
42
43 /**
44 * Number of events column tool tip.
45 */
46 public static String TmfStatisticsView_NbEventsTip;
47
48 /**
49 * Partial number of events column.
50 * @since 2.0
51 */
52 public static String TmfStatisticsView_NbEventsTimeRangeColumn;
53
54 /**
55 * Partial number of events column tool tip.
56 * @since 2.0
57 */
58 public static String TmfStatisticsView_NbEventsTimeRangeTip;
59
60 /**
61 * String for unknown trace name.
62 */
63 public static String TmfStatisticsView_UnknownTraceName;
64
65 static {
66 // initialize resource bundle
67 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
68 }
69
70 private Messages() {
71 }
72 }
This page took 0.032531 seconds and 6 git commands to generate.