d2e8255368ef6b01bbd07967c442b068dc364752
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.core / src / org / eclipse / tracecompass / analysis / os / linux / core / kernelanalysis / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2014, 2015 É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
13 package org.eclipse.tracecompass.analysis.os.linux.core.kernelanalysis;
14
15 import org.eclipse.jdt.annotation.Nullable;
16 import org.eclipse.osgi.util.NLS;
17
18 /**
19 * Externalized message strings from the LTTng Kernel Analysis
20 *
21 * @author Geneviève Bastien
22 */
23 @SuppressWarnings("javadoc")
24 public class Messages extends NLS {
25 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.analysis.os.linux.core.kernelanalysis.messages"; //$NON-NLS-1$
26
27 /**
28 * @since 1.0
29 */
30 public static @Nullable String AspectName_Prio;
31
32 /**
33 * @since 1.0
34 */
35 public static @Nullable String AspectHelpText_Prio;
36
37 public static @Nullable String LttngKernelAnalysisModule_Help;
38
39 static {
40 // initialize resource bundle
41 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
42 }
43
44 private Messages() {
45 }
46 }
This page took 0.03364 seconds and 4 git commands to generate.