blob: 65b97d8d9f2d3d12e7084a5a79a00730f72e7fd2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 EfficiOS Inc. and others
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tracecompass.lttng2.ust.core.analysis.debuginfo;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.osgi.util.NLS;
/**
* Message bundle
*
* @author Alexandre Montplaisir
* @since 2.0
*/
@SuppressWarnings("javadoc")
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.tracecompass.lttng2.ust.core.analysis.debuginfo.messages"; //$NON-NLS-1$
public static @Nullable String UstDebugInfoAnalysis_BinaryAspectName;
public static @Nullable String UstDebugInfoAnalysis_BinaryAspectHelpText;
public static @Nullable String UstDebugInfoAnalysis_FunctionAspectName;
public static @Nullable String UstDebugInfoAnalysis_FunctionAspectHelpText;
public static @Nullable String UstDebugInfoAnalysis_SourceAspectName;
public static @Nullable String UstDebugInfoAnalysis_SourceAspectHelpText;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}