analysis.lami: Add toolbar to custom charts
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.lami.ui / src / org / eclipse / tracecompass / internal / provisional / analysis / lami / ui / viewers / Messages.java
CommitLineData
4208b510
AM
1/*******************************************************************************
2 * Copyright (c) 2015, 2016 EfficiOS Inc., Alexandre Montplaisir
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
10package org.eclipse.tracecompass.internal.provisional.analysis.lami.ui.viewers;
11
12import org.eclipse.jdt.annotation.NonNullByDefault;
13import org.eclipse.osgi.util.NLS;
14
15/**
16 * Message bundle for the package
17 *
18 * @noreference Messages class
19 */
20@NonNullByDefault({})
21@SuppressWarnings("javadoc")
22public class Messages extends NLS {
23
24 private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$
25
4208b510
AM
26 public static String LamiScatterViewer_by;
27
7710e6ed
JR
28 public static String LamiXYChartViewer_CloseChartToolTip;
29
30 public static String LamiViewer_DefaultValueName;
31
4208b510
AM
32 static {
33 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
34 }
35
36 private Messages() {
37 }
38}
This page took 0.032607 seconds and 5 git commands to generate.