Import lttng.kernel.core plugins from Scope
[deliverable/tracecompass.git] / lttng / org.lttng.scope.lttng.kernel.core / src / org / lttng / scope / lttng / kernel / core / event / aspect / Messages.java
CommitLineData
451ba2f7
AM
1/*******************************************************************************
2 * Copyright (c) 2015 École Polytechnique de Montréal
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * 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.lttng.scope.lttng.kernel.core.event.aspect;
14
15import org.eclipse.jdt.annotation.NonNullByDefault;
16import org.eclipse.osgi.util.NLS;
17
18/**
19 * @noreference Messages class
20 */
21@NonNullByDefault({})
22@SuppressWarnings("javadoc")
23public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$
26
27 public static String ThreadPriorityAspect_Name;
28 public static String ThreadPriorityAspect_HelpText;
29
30 public static String KernelTidAspect_Name;
31 public static String KernelTidAspect_HelpText;
32
33 static {
34 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
35 }
36
37 private Messages() {
38 }
39}
This page took 0.025868 seconds and 5 git commands to generate.