control: remove calibrate command
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.timing.ui / src / org / eclipse / tracecompass / internal / analysis / timing / ui / views / segmentstore / Messages.java
CommitLineData
b9fff7ad
BH
1/*******************************************************************************
2 * Copyright (c) 2015 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 * Contributors:
10 * France Lapointe Nguyen - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore;
14
15import org.eclipse.jdt.annotation.NonNullByDefault;
16import org.eclipse.osgi.util.NLS;
17
18/**
19 * @author France Lapointe Nguyen
20 * @since 2.0
21 */
4c4e2816 22@NonNullByDefault({})
b9fff7ad
BH
23public class Messages extends NLS {
24 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore.messages"; //$NON-NLS-1$
25
26 /**
27 * Name of the duration column
28 */
29 public static String SegmentStoreTableViewer_duration;
30
31 /**
32 * Name of the end time column
33 */
34 public static String SegmentStoreTableViewer_endTime;
35
36 /**
37 * Name of the start time column
38 */
39 public static String SegmentStoreTableViewer_startTime;
40
03c96217
BH
41 /**
42 * Title of action to goto start time time
43 */
44 public static String SegmentStoreTableViewer_goToStartEvent;
45
46 /**
47 * Title of action to goto end event
48 */
49 public static String SegmentStoreTableViewer_goToEndEvent;
b9fff7ad
BH
50 /**
51 * Title of the scatter graph
52 */
03c96217 53 public static String SegmentStoreScatterGraphViewer_title;
b9fff7ad
BH
54
55 /**
56 * Title of the x axis of the scatter graph
57 */
03c96217 58 public static String SegmentStoreScatterGraphViewer_xAxis;
b9fff7ad
BH
59
60 /**
61 * Title of the y axis of the scatter graph
62 */
03c96217 63 public static String SegmentStoreScatterGraphViewer_yAxis;
b9fff7ad
BH
64
65 /**
03c96217 66 * Legend
b9fff7ad 67 */
03c96217 68 public static String SegmentStoreScatterGraphViewer_legend;
b9fff7ad
BH
69
70 /**
03c96217 71 * Name of the compacting job
b9fff7ad 72 */
03c96217 73 public static String SegmentStoreScatterGraphViewer_compactTitle;
b9fff7ad
BH
74
75 static {
76 // initialize resource bundle
77 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
78 }
79
80 private Messages() {
81 }
82}
This page took 0.030878 seconds and 5 git commands to generate.