29a4bbfa6836f0fd97ace051257ccdcb466e8900
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ust.ui / src / org / eclipse / linuxtools / internal / lttng2 / ust / ui / views / memusage / 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 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.internal.lttng2.ust.ui.views.memusage;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Translatable strings for the ust memory usage view
19 *
20 * @author Geneviève Bastien
21 */
22 public class Messages extends NLS {
23 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.lttng2.ust.ui.views.memusage.messages"; //$NON-NLS-1$
24 /** Title of the memory usage xy view */
25 public static String MemoryUsageView_Title;
26
27 /** Title of the memory viewer */
28 public static String MemoryUsageViewer_Title;
29 /** X axis caption */
30 public static String MemoryUsageViewer_XAxis;
31 /** Y axis caption */
32 public static String MemoryUsageViewer_YAxis;
33 static {
34 // initialize resource bundle
35 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
36 }
37
38 private Messages() {
39 }
40 }
This page took 0.048343 seconds and 4 git commands to generate.