analysis: Move timing analysis ui classes in own java packages
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.timing.ui / src / org / eclipse / tracecompass / internal / analysis / timing / ui / views / segmentstore / scatter / 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
10 package org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore.scatter;
11
12 import org.eclipse.jdt.annotation.NonNullByDefault;
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16 * @author France Bernd Hufmann
17 */
18 @NonNullByDefault({})
19 public class Messages extends NLS {
20 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore.scatter.messages"; //$NON-NLS-1$
21
22 /**
23 * Title of the scatter graph
24 */
25 public static String SegmentStoreScatterGraphViewer_title;
26
27 /**
28 * Title of the x axis of the scatter graph
29 */
30 public static String SegmentStoreScatterGraphViewer_xAxis;
31
32 /**
33 * Title of the y axis of the scatter graph
34 */
35 public static String SegmentStoreScatterGraphViewer_yAxis;
36
37 /**
38 * Legend
39 */
40 public static String SegmentStoreScatterGraphViewer_legend;
41
42 /**
43 * Name of the compacting job
44 */
45 public static String SegmentStoreScatterGraphViewer_compactTitle;
46
47 static {
48 // initialize resource bundle
49 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
50 }
51
52 private Messages() {
53 }
54 }
This page took 0.032929 seconds and 5 git commands to generate.