Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / callstack / Messages.java
CommitLineData
b489a029 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
b489a029
AM
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
2bdf0193 13package org.eclipse.tracecompass.tmf.core.callstack;
b489a029
AM
14
15import org.eclipse.osgi.util.NLS;
16
17/**
18 * Message bundle for the call stack state provider.
b489a029
AM
19 */
20public class Messages extends NLS {
21
2bdf0193 22 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.core.callstack.messages"; //$NON-NLS-1$
b489a029
AM
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.066431 seconds and 5 git commands to generate.