lttng.ust: Remove some unused messages
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.ui / src / org / eclipse / tracecompass / internal / lttng2 / ust / ui / analysis / callstack / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2016 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 package org.eclipse.tracecompass.internal.lttng2.ust.ui.analysis.callstack;
10
11 import org.eclipse.osgi.util.NLS;
12
13 /**
14 * Message bundle for the call stack analysis module
15 *
16 * @author Sonia Farrah
17 */
18
19 public class Messages extends NLS {
20 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.lttng2.ust.ui.analysis.callstack.messages"; //$NON-NLS-1$
21
22 static {
23 // initialize resource bundle
24 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
25 }
26
27 /** Information regarding events loading prior to the analysis execution */
28 public static String LttnUstCallStackAnalysisModule_EventsLoadingInformation;
29
30 private Messages() {
31 }
32 }
This page took 0.036407 seconds and 5 git commands to generate.