f2b8ccca30ae41403118e63cb0af27dbd948532c
[deliverable/tracecompass.git] / lttng / org.lttng.scope.lttng.kernel.core / src / org / lttng / scope / lttng / kernel / core / event / aspect / Messages.java
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
13 package org.lttng.scope.lttng.kernel.core.event.aspect;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.eclipse.osgi.util.NLS;
17
18 /**
19 * @noreference Messages class
20 */
21 @NonNullByDefault({})
22 @SuppressWarnings("javadoc")
23 public 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.031627 seconds and 4 git commands to generate.