[Tmf][Ctf] Add descriptive fail to import messages.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / viewers / statistics / model / 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.model;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Message strings for the statistics framework.
19 *
20 * @version 2.0
21 * @author Mathieu Denis
22 * @since 2.0
23 */
24 @SuppressWarnings("javadoc")
25 public class Messages extends NLS {
26
27 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.viewers.statistics.model.messages"; //$NON-NLS-1$
28
29 /**
30 * CPU statistic name.
31 */
32 public static String TmfStatisticsData_CPUs;
33
34 /**
35 * Event type statistic name.
36 */
37 public static String TmfStatisticsData_EventTypes;
38
39 /**
40 * Level column name
41 */
42 public static String TmfStatisticsView_LevelColumn;
43
44 /**
45 * Level column tool tip.
46 */
47 public static String TmfStatisticsView_LevelColumnTip;
48
49 /**
50 * Number of events column name.
51 */
52 public static String TmfStatisticsView_NbEventsColumn;
53
54 /**
55 * Number of events column tool tip.
56 */
57 public static String TmfStatisticsView_NbEventsTip;
58
59 /**
60 * Partial number of events column.
61 * @since 2.0
62 */
63 public static String TmfStatisticsView_NbEventsTimeRangeColumn;
64
65 /**
66 * Partial number of events column tool tip.
67 * @since 2.0
68 */
69 public static String TmfStatisticsView_NbEventsTimeRangeTip;
70
71 static {
72 // initialize resource bundle
73 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
74 }
75
76 private Messages() {
77 }
78 }
This page took 0.033141 seconds and 5 git commands to generate.