blob: 438e22154fe1c3420f44de0e8d8f5bae58b47aed [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2014 Ericsson
*
* 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
*
* Contributors:
* Matthew Khouzam - Initial API and implementation
* Patrick Tasse - Update for GDB trace validation
*******************************************************************************/
package org.eclipse.tracecompass.internal.gdbtrace.core.trace;
import org.eclipse.osgi.util.NLS;
/**
* Message bundle for gdbtrace.core.trace
*
* @author Matthew Khouzam
*/
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.gdbtrace.core.trace.messages"; //$NON-NLS-1$
/** Executable not set - trace is not associated to an executable.*/
public static String GdbTrace_ExecutableNotSet;
/** Failed to initialize trace */
public static String GdbTrace_FailedToInitializeTrace;
/** File not found */
public static String GdbTrace_FileNotFound;
/** Trace must be a file, not a directory or something else */
public static String GdbTrace_GdbTracesMustBeAFile;
/** IOException validating trace file */
public static String GdbTrace_IOException;
/** File is not a GDB trace file */
public static String GdbTrace_NotGdbTraceFile;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}