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