lttng.ust: Split the function name into its own aspect/column
[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_BinaryAspectName;
27 public static @Nullable String UstDebugInfoAnalysis_BinaryAspectHelpText;
3335f36e
AM
28 public static @Nullable String UstDebugInfoAnalysis_FunctionAspectName;
29 public static @Nullable String UstDebugInfoAnalysis_FunctionAspectHelpText;
30 public static @Nullable String UstDebugInfoAnalysis_SourceAspectName;
31 public static @Nullable String UstDebugInfoAnalysis_SourceAspectHelpText;
ef7f180d 32
ef7f180d
AM
33 static {
34 // initialize resource bundle
35 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
36 }
37
38 private Messages() {
39 }
40}
This page took 0.060247 seconds and 5 git commands to generate.