blob: 2ac746d2fca18f204b28074d9a4fc8e13436e60a [file] [log] [blame]
/**
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* 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:
* Thales Corporate Services S.A.S - initial API and implementation
*
*/
package org.eclipse.egf.application.internal.l10n;
import org.eclipse.osgi.util.NLS;
public class ApplicationMessages {
private static final String BUNDLE_NAME = "org.eclipse.egf.application.internal.l10n.messages"; //$NON-NLS-1$
private ApplicationMessages() {
// Do not instantiate
}
static {
// load message values from bundle file
NLS.initializeMessages(BUNDLE_NAME, ApplicationMessages.class);
}
public static String ActivityApplication_Arguments_Usage;
public static String ActivityApplication_Invalid_URI_Argument;
public static String ActivityApplication_EObject_Loading_Error;
public static String ActivityApplication_Invalid_Activity_Argument;
public static String ActivityRunner_NullActivity;
public static String ActivityRunner_ActivityRunner_Exception;
public static String ActivityRunner_PreInvokeProblems_message;
public static String ActivityRunner_PostInvokeProblems_message;
public static String EGFTaskLaunchConfigurationDelegate_error_no_socket;
}