blob: 0eaa7abb635a6e61ad412cc0bdb3971c034e616b [file] [log] [blame]
/**
* Copyright (c) 2006 IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial Implementation
*
*/
package org.eclipse.ptp.remote.remotetools.core.messages;
import org.eclipse.osgi.util.NLS;
/**
* @author Daniel Felix Ferber
*
* @since 3.0
*/
public class Messages extends NLS
{
private static final String BUNDLE_ID = "org.eclipse.ptp.remote.remotetools.core.messages.messages"; //$NON-NLS-1$
public static String TargetControl_create_MonitorConnecting;
public static String TargetControl_resume_CannotResume;
public static String TargetControl_stop_CannotPause;
public static String RemoteToolsConnection_connectionNotOpen;
public static String RemoteToolsConnection_remotePort;
public static String RemoteToolsConnection_open;
public static String RemoteToolsConnection_forwarding;
public static String RemoteToolsConnection_close;
static {
// load message values from bundle file
NLS.initializeMessages(BUNDLE_ID, Messages.class);
}
private Messages() {
// cannot create new instance
}
}