lttng: Add analysis requirements for LTTng UST Call Stack analysis
[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 ust memory analysis module
15 *
16 * @author Bernd Hufmann
17 */
18 public class Messages extends NLS {
19 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.lttng2.ust.ui.analysis.callstack.messages"; //$NON-NLS-1$
20
21 /** Information regarding events loading prior to the analysis execution */
22 public static String LttnUstCallStackAnalysisModule_EventsLoadingInformation;
23
24 static {
25 // initialize resource bundle
26 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
27 }
28
29 private Messages() {
30 }
31 }
This page took 0.032281 seconds and 6 git commands to generate.