os.linux: Move ThreadPriorityAspect to the event.aspect package
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.core / src / org / eclipse / tracecompass / analysis / os / linux / core / kernel / Messages.java
CommitLineData
e3366401 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2014, 2015 École Polytechnique de Montréal
e3366401
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
0f7a12d3 13package org.eclipse.tracecompass.analysis.os.linux.core.kernel;
e3366401 14
e363eae1 15import org.eclipse.jdt.annotation.Nullable;
e3366401
GB
16import org.eclipse.osgi.util.NLS;
17
18/**
19 * Externalized message strings from the LTTng Kernel Analysis
20 *
21 * @author Geneviève Bastien
0f7a12d3 22 * @since 2.0
e3366401
GB
23 */
24@SuppressWarnings("javadoc")
25public class Messages extends NLS {
0f7a12d3 26 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.analysis.os.linux.core.kernel.messages"; //$NON-NLS-1$
2531b10a 27
e363eae1 28 public static @Nullable String LttngKernelAnalysisModule_Help;
e3366401
GB
29
30 static {
31 // initialize resource bundle
32 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
33 }
34
35 private Messages() {
36 }
37}
This page took 0.081157 seconds and 5 git commands to generate.