Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 83c3a257a67506bed169ae796e290b1d9fbe7f50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*******************************************************************************
 * Copyright (c) 2007, 2009 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
 *******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.emf.util.mmregistry;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
    private Messages() {
    }

    public static String MetamodelRegistry_0;
    public static String MetamodelRegistry_LoadError;
	public static String WorskpaceMetamodelProvider_URINotReferringMetamodel;    
    
    private static final String BUNDLE_NAME = "org.eclipse.m2m.internal.qvt.oml.emf.util.mmregistry.messages"; //$NON-NLS-1$
    static {
        NLS.initializeMessages(BUNDLE_NAME, Messages.class);
    }
}

Back to the top