dbaf6157e072f034c719dfa0e16b0a57fd31bf87
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.remote.ui / src / org / eclipse / tracecompass / internal / tmf / remote / ui / preferences / 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 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
12 package org.eclipse.tracecompass.internal.tmf.remote.ui.preferences;
13
14 import org.eclipse.osgi.util.NLS;
15
16 /**
17 * Messages file for the TMF remote UI preferences package.
18 *
19 * @author Bernd Hufmann
20 */
21 @SuppressWarnings("javadoc")
22 public final class Messages extends NLS {
23
24 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.tmf.remote.ui.preferences.messages"; //$NON-NLS-1$
25
26 public static String TraceControl_CommandTimeout;
27
28 static {
29 // initialize resource bundle
30 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
31 }
32
33 private Messages() {
34 }
35 }
This page took 0.159689 seconds and 4 git commands to generate.