blob: 43ea58edb6bf4a2749ab75668bd4a3642b6105bb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2019 Borland Software Corporation 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:
* Borland Software Corporation - initial API and implementation
* Christopher Gerking - bug 537609
*******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.common;
import org.eclipse.osgi.util.NLS;
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.m2m.internal.qvt.oml.common.messages"; //$NON-NLS-1$
private Messages() {
}
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
public static String FileUtil_CannotDelete;
public static String IProcess_Label;
public static String IProcess_LabelTransform;
public static String IProcess_InvalidState;
public static String TransformationRegistry_MissingMetamodelAttr;
public static String TransformationRegistry_MissingMetaclassAttr;
public static String TransformationRegistry_UnknownMetamodel;
public static String TransformationRegistry_NoElements;
public static String InvalidFilePath;
}