6c92006e292b53c4430fadaa2b9e5fab463ddb3b
[deliverable/tracecompass.git] / lttng / org.lttng.scope.lttng.kernel.core / src / org / lttng / scope / lttng / kernel / core / analysis / os / 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.lttng.scope.lttng.kernel.core.analysis.os;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
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 * @noreference Messages class
23 */
24 @NonNullByDefault({})
25 @SuppressWarnings("javadoc")
26 public class Messages extends NLS {
27
28 private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$
29
30 public static String LttngKernelAnalysisModule_Help;
31
32 static {
33 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
34 }
35
36 private Messages() {
37 }
38 }
This page took 0.036636 seconds and 5 git commands to generate.