lttng: Help stabilize some TimeGraphs tests
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / synchronization / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2014 École Polytechnique de Montréal
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * 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 * Geneviève Bastien - Initial implementation and API
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.tmf.ui.views.synchronization;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Message file for the synchronization view
19 */
20 @SuppressWarnings("javadoc")
21 public class Messages extends NLS {
22 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ui.views.synchronization.messages"; //$NON-NLS-1$
23 public static String TmfSynchronizationView_NameColumn;
24 public static String TmfSynchronizationView_ValueColumn;
25 static {
26 // initialize resource bundle
27 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
28 }
29
30 private Messages() {
31 }
32 }
This page took 0.047041 seconds and 5 git commands to generate.