a5f47513673bb295e4804c1b9b1f052c6ac226b5
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / callstack / 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 * Alexandre Montplaisir - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.tmf.core.callstack;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Message bundle for the call stack state provider.
19 */
20 public class Messages extends NLS {
21
22 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.core.callstack.messages"; //$NON-NLS-1$
23
24 /**
25 * The value popped from a 'func_exit' event doesn't match the current
26 * function name.
27 */
28 public static String CallStackStateProvider_UnmatchedPoppedValue;
29
30 static {
31 // initialize resource bundle
32 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
33 }
34
35 private Messages() {
36 }
37 }
This page took 0.041654 seconds and 4 git commands to generate.