timing: Add a generic table view for any segment provider
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.timing.ui / src / org / eclipse / tracecompass / internal / analysis / timing / ui / views / segmentstore / table / Messages.java
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
13 package org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore.table;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.eclipse.osgi.util.NLS;
17
18 /**
19 * @author France Lapointe Nguyen
20 */
21 @NonNullByDefault({})
22 public class Messages extends NLS {
23 private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$
24
25 /**
26 * Name of the duration column
27 */
28 public static String SegmentStoreTableViewer_duration;
29
30 /**
31 * Name of the end time column
32 */
33 public static String SegmentStoreTableViewer_endTime;
34
35 /**
36 * Name of the start time column
37 */
38 public static String SegmentStoreTableViewer_startTime;
39
40 /**
41 * Title of action to goto start time time
42 */
43 public static String SegmentStoreTableViewer_goToStartEvent;
44
45 /**
46 * Title of action to goto end event
47 */
48 public static String SegmentStoreTableViewer_goToEndEvent;
49
50 /** Title of the table, to be appended to the analysis name for the title of the view */
51 public static String SegmentStoreTableViewer_genericTitle;
52
53 static {
54 // initialize resource bundle
55 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
56 }
57
58 private Messages() {
59 }
60 }
This page took 0.031342 seconds and 5 git commands to generate.