analysis: Show thread priority in critical path view
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.kernel.core / src / org / eclipse / tracecompass / internal / lttng2 / kernel / core / analysis / graph / model / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2016 É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
10 package org.eclipse.tracecompass.internal.lttng2.kernel.core.analysis.graph.model;
11
12 import org.eclipse.jdt.annotation.Nullable;
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16 * Externalized strings for this package
17 *
18 * @author Geneviève Bastien
19 */
20 public class Messages extends NLS {
21 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.lttng2.kernel.core.analysis.graph.model.messages"; //$NON-NLS-1$
22 /**
23 * Thread priority text
24 */
25 public static @Nullable String LttngWorker_threadPriority;
26
27 static {
28 // initialize resource bundle
29 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
30 }
31
32 private Messages() {
33 }
34 }
This page took 0.037126 seconds and 5 git commands to generate.