gdbtrace: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ust.core / src / org / eclipse / linuxtools / lttng2 / ust / core / analysis / memory / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2014 École Polytechnique de Montréal
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 * Guilliano Molaire - Initial API and implementation
11 *******************************************************************************/
12 package org.eclipse.linuxtools.lttng2.ust.core.analysis.memory;
13
14 import org.eclipse.osgi.util.NLS;
15
16 /**
17 * Message bundle for the ust memory analysis module
18 *
19 * @author Guilliano Molaire
20 * @since 3.0
21 */
22 public class Messages extends NLS {
23 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.lttng2.ust.core.analysis.memory.messages"; //$NON-NLS-1$
24
25 /** Information regarding events loading prior to the analysis execution */
26 public static String UstMemoryAnalysisModule_EventsLoadingInformation;
27
28 /** Example of how to execute the application with the libc wrapper */
29 public static String UstMemoryAnalysisModule_EventsLoadingExampleInformation;
30
31 static {
32 // initialize resource bundle
33 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
34 }
35
36 private Messages() {
37 }
38 }
This page took 0.032542 seconds and 5 git commands to generate.