gdbtrace: Rename packages to org.eclipse.tracecompass.*
[deliverable/tracecompass.git] / org.eclipse.tracecompass.gdbtrace.core / src / org / eclipse / tracecompass / internal / gdbtrace / core / trace / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2014 Ericsson
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 * Matthew Khouzam - Initial API and implementation
11 * Patrick Tasse - Update for GDB trace validation
12 *******************************************************************************/
13
14 package org.eclipse.tracecompass.internal.gdbtrace.core.trace;
15
16 import org.eclipse.osgi.util.NLS;
17
18 /**
19 * Message bundle for gdbtrace.core.trace
20 *
21 * @author Matthew Khouzam
22 */
23 public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.gdbtrace.core.trace.messages"; //$NON-NLS-1$
26
27 /** Executable not set - trace is not associated to an executable.*/
28 public static String GdbTrace_ExecutableNotSet;
29
30 /** Failed to initialize trace */
31 public static String GdbTrace_FailedToInitializeTrace;
32
33 /** File not found */
34 public static String GdbTrace_FileNotFound;
35
36 /** Trace must be a file, not a directory or something else */
37 public static String GdbTrace_GdbTracesMustBeAFile;
38
39 /** IOException validating trace file */
40 public static String GdbTrace_IOException;
41
42 /** File is not a GDB trace file */
43 public static String GdbTrace_NotGdbTraceFile;
44
45 static {
46 // initialize resource bundle
47 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
48 }
49
50 private Messages() {
51 }
52 }
This page took 0.032574 seconds and 5 git commands to generate.