blob: 47c6171ef83029f1f0f280e7acc2eead57000e95 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2008-2010 See4sys and others.
* 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:
* See4sys - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.sphinx.tests.emf.metamodel.descs;
import org.eclipse.sphinx.emf.metamodel.MetaModelVersionData;
@SuppressWarnings("nls")
public class Test1Release102 extends Test1MM {
public static final String ID = "org.eclipse.sphinx.emf.internal.tests.test1mm101";
private static final String NS_POSTFIX = "1.0.2";
private static final String EPKG_NS_PATTERN = "1\\.0\\.2/\\d+";
public static final String NAME = "Test1 Metamodel Release 1.0.2";
private static final MetaModelVersionData RELEASE_DATA = new MetaModelVersionData(NS_POSTFIX, EPKG_NS_PATTERN, NAME);
public static final Test1Release102 INSTANCE = new Test1Release102();
public Test1Release102() {
super(ID, RELEASE_DATA);
}
}