blob: 86e75099f7cf24ff5458af46e46b74e7b53b8966 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Gregoire DUPE (Mia-Software)
* Nicolas Bros (Mia-Software) - Bug 337402 - [Discovery Workflow] refactoring
*******************************************************************************/
package org.eclipse.modisco.workflow.core.internal;
import org.eclipse.osgi.util.NLS;
/**
* @author gdupe
*
*/
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.modisco.workflow.core.internal.messages"; //$NON-NLS-1$
public static String WorkflowControllerImpl_launchConfigurationNotFound;
public static String WorkflowControllerImpl_recursionError;
public static String WorkflowExecutionImpl_elementOfType;
static {
// initialize resource bundle
NLS.initializeMessages(Messages.BUNDLE_NAME, Messages.class);
}
private Messages() {
// Empty
}
}