timing.ui: add Export to TSV to tables and statistics
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.timing.ui / src / org / eclipse / tracecompass / internal / analysis / timing / ui / views / segmentstore / 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;
11
12 import org.eclipse.jdt.annotation.Nullable;
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16 * Messages for segment store views
17 *
18 * @author Matthew Khouzam
19 */
20 public class Messages extends NLS {
21 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.timing.ui.views.segmentstore.messages"; //$NON-NLS-1$
22 /**
23 * Export to TSV message
24 */
25 public static @Nullable String AbstractSegmentStoreTableView_exportToTsv;
26 /**
27 * Export to TSV tooltip
28 */
29 public static @Nullable String ExportToTsvAction_exportToTsvToolTip;
30 static {
31 // initialize resource bundle
32 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
33 }
34
35 private Messages() {
36 }
37 }
This page took 0.032851 seconds and 5 git commands to generate.