blob: e997140b97e2ca65456f5033c7a57efc3845399c [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2011 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.xtend.typesystem.emf.ui;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.sphinx.xtend.typesystem.emf.SphinxManagedEmfMetaModel;
import org.eclipse.xtend.expression.TypeSystem;
import org.eclipse.xtend.shared.ui.MetamodelContributor;
import org.eclipse.xtend.typesystem.MetaModel;
public class SphinxManagedEmfMetamodelContributor implements MetamodelContributor {
@Override
public MetaModel[] getMetamodels(IJavaProject project, TypeSystem ctx) {
return new MetaModel[] { new SphinxManagedEmfMetaModel(project.getProject()) };
}
}