7872d4c3dd87abad018ea2f07da6032fdec51537
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.remote.core / src / org / eclipse / tracecompass / internal / tmf / remote / core / messages / 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.core.messages;
13
14 import org.eclipse.osgi.util.NLS;
15
16 /**
17 * Messages file for the trace control 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.core.messages.messages"; //$NON-NLS-1$
25
26 // Failures
27 public static String RemoteConnection_ExecutionCancelled;
28 public static String RemoteConnection_ExecutionFailure;
29 public static String RemoteConnection_ExecutionTimeout;
30 public static String RemoteConnection_ShellNotConnected;
31 public static String RemoteConnection_CommandShellError;
32
33 public static String RemoteConnection_ConnectionError;
34 public static String RemoteConnection_DuplicateConnectionError;
35
36 static {
37 // initialize resource bundle
38 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
39 }
40
41 private Messages() {
42 }
43 }
This page took 0.033218 seconds and 4 git commands to generate.