gdbtrace: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.ui / src / org / eclipse / linuxtools / internal / lttng2 / kernel / ui / views / cpuusage / Messages.java
CommitLineData
dffc234f
GB
1/*******************************************************************************
2 * Copyright (c) 2014 École Polytechnique de Montréal
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
13package org.eclipse.linuxtools.internal.lttng2.kernel.ui.views.cpuusage;
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 {
24 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.lttng2.kernel.ui.views.cpuusage.messages"; //$NON-NLS-1$
25 public static String CpuUsageComposite_ColumnPercent;
26 public static String CpuUsageComposite_ColumnProcess;
27 public static String CpuUsageComposite_ColumnTID;
28 public static String CpuUsageComposite_ColumnTime;
29 public static String CpuUsageComposite_TextPercent;
30 public static String CpuUsageComposite_TextTime;
31 public static String CpuUsageView_Title;
32 public static String CpuUsageXYViewer_CpuYAxis;
33 public static String CpuUsageXYViewer_TimeXAxis;
34 public static String CpuUsageXYViewer_Title;
35 public static String CpuUsageXYViewer_Total;
36 static {
37 // initialize resource bundle
38 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
39 }
40
41 private Messages() {
42 }
43}
This page took 0.032071 seconds and 5 git commands to generate.