control: add service test cases for load and save commands
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.core / src / org / eclipse / tracecompass / analysis / os / linux / core / kernelanalysis / 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
e363eae1 13package org.eclipse.tracecompass.analysis.os.linux.core.kernelanalysis;
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
e3366401
GB
22 */
23@SuppressWarnings("javadoc")
24public class Messages extends NLS {
2531b10a
CM
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;
e3366401 36
e363eae1 37 public static @Nullable String LttngKernelAnalysisModule_Help;
e3366401
GB
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.058259 seconds and 5 git commands to generate.