tmf: Bug 491548: Do not incrementally build full time graph event list
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / analysis / os / linux / ui / views / cpuusage / Messages.java
CommitLineData
dffc234f 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2014, 2015 École Polytechnique de Montréal
dffc234f
GB
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 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
e363eae1 13package org.eclipse.tracecompass.analysis.os.linux.ui.views.cpuusage;
dffc234f
GB
14
15import org.eclipse.osgi.util.NLS;
16
17/**
18 * Messages used in the LTTng kernel CPU usage view and viewers.
19 *
20 * @author Geneviève Bastien
21 */
22@SuppressWarnings("javadoc")
23public class Messages extends NLS {
e363eae1
AM
24
25 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.analysis.os.linux.ui.views.cpuusage.messages"; //$NON-NLS-1$
26
dffc234f
GB
27 public static String CpuUsageComposite_ColumnPercent;
28 public static String CpuUsageComposite_ColumnProcess;
29 public static String CpuUsageComposite_ColumnTID;
30 public static String CpuUsageComposite_ColumnTime;
31 public static String CpuUsageComposite_TextPercent;
32 public static String CpuUsageComposite_TextTime;
33 public static String CpuUsageView_Title;
34 public static String CpuUsageXYViewer_CpuYAxis;
35 public static String CpuUsageXYViewer_TimeXAxis;
36 public static String CpuUsageXYViewer_Title;
37 public static String CpuUsageXYViewer_Total;
e363eae1 38
dffc234f
GB
39 static {
40 // initialize resource bundle
41 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
42 }
43
44 private Messages() {
45 }
46}
This page took 0.062107 seconds and 5 git commands to generate.