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
CommitLineData
792d23c2
BH
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 *******************************************************************************/
9package org.eclipse.tracecompass.internal.lttng2.ust.ui.analysis.callstack;
10
11import org.eclipse.osgi.util.NLS;
12
13/**
74ccf789 14 * Message bundle for the call stack analysis module
792d23c2 15 *
74ccf789 16 * @author Sonia Farrah
792d23c2 17 */
74ccf789 18
792d23c2
BH
19public 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
792d23c2
BH
22 static {
23 // initialize resource bundle
24 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
25 }
26
74ccf789
SF
27 /** Information regarding events loading prior to the analysis execution */
28 public static String LttnUstCallStackAnalysisModule_EventsLoadingInformation;
29
792d23c2
BH
30 private Messages() {
31 }
32}
This page took 0.033947 seconds and 5 git commands to generate.