blob: d7b63a2917776a983fda1b95b1d7d50049728dde [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Louis Rose - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.hutn.model;
import java.io.File;
import java.io.IOException;
import org.eclipse.emf.common.util.URI;
import org.eclipse.epsilon.common.util.FileUtil;
public class HutnMetamodel {
private HutnMetamodel() {}
public static File getMetaModelFile() throws IOException {
return FileUtil.getFileStandalone("HUTN.ecore", HutnMetamodel.class);
}
public static URI getMetaModelUri() throws IOException {
return URI.createFileURI(FileUtil.getFileStandalone("HUTN.ecore", HutnMetamodel.class).getAbsolutePath());
}
}