Copyright header update, 2015 edition
[deliverable/tracecompass.git] / 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 * @since 3.0
20 */
21 @SuppressWarnings("javadoc")
22 public class Messages extends NLS {
23 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.tmf.ui.views.synchronization.messages"; //$NON-NLS-1$
24 public static String TmfSynchronizationView_NameColumn;
25 public static String TmfSynchronizationView_ValueColumn;
26 static {
27 // initialize resource bundle
28 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
29 }
30
31 private Messages() {
32 }
33 }
This page took 0.031776 seconds and 5 git commands to generate.