releng: Target updates for Neon M7
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.core / src / org / eclipse / tracecompass / lttng2 / ust / core / analysis / debuginfo / Messages.java
CommitLineData
ef7f180d
AM
1/*******************************************************************************
2 * Copyright (c) 2015 EfficiOS Inc. and others
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
10package org.eclipse.tracecompass.lttng2.ust.core.analysis.debuginfo;
11
12import org.eclipse.jdt.annotation.Nullable;
13import org.eclipse.osgi.util.NLS;
14
15/**
16 * Message bundle
17 *
18 * @author Alexandre Montplaisir
19 * @since 2.0
20 */
df993132 21@SuppressWarnings("javadoc")
ef7f180d
AM
22public class Messages extends NLS {
23
24 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.lttng2.ust.core.analysis.debuginfo.messages"; //$NON-NLS-1$
25
df993132
AM
26 public static @Nullable String UstDebugInfoAnalysis_SourceAspectName;
27 public static @Nullable String UstDebugInfoAnalysis_SourceAspectHelpText;
28 public static @Nullable String UstDebugInfoAnalysis_BinaryAspectName;
29 public static @Nullable String UstDebugInfoAnalysis_BinaryAspectHelpText;
ef7f180d 30
ef7f180d
AM
31 static {
32 // initialize resource bundle
33 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
34 }
35
36 private Messages() {
37 }
38}
This page took 0.033607 seconds and 5 git commands to generate.