blob: d0a2f660a2507ecc784fd5ddd7672cfdda076036 [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
******************************************************************************
*
* $Id$
*/
package org.eclipse.epsilon.hutn.test.models;
import java.io.File;
import org.eclipse.emf.common.util.URI;
import org.eclipse.epsilon.hutn.test.models.util.FileUtil;
public abstract class BankAccounts {
private BankAccounts() {}
public static File getMetaModelFile() {
return FileUtil.getFile("BankAccounts.ecore", BankAccounts.class);
}
public static URI getMetaModelUri() {
return URI.createFileURI(getMetaModelFile().getAbsolutePath());
}
}