blob: 123316b77a4a04bdcb5340067c63ff9fd75ed032 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 CEA LIST 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:
* Nicolas Bros (Mia-Software) - Bug 376941 - [EFacet] Facet operation arguments in Facet model
*******************************************************************************/
package org.eclipse.modisco.facet.efacet.core.internal.query;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.modisco.facet.efacet.core.IDerivedTypedElementManager;
import org.eclipse.modisco.facet.efacet.core.exception.DerivedTypedElementException;
import org.eclipse.modisco.facet.efacet.core.query.IQueryImplementation;
import org.eclipse.modisco.facet.efacet.core.query.IQueryImplementationFactory;
import org.eclipse.modisco.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query;
import org.eclipse.modisco.facet.efacet.metamodel.v0_2_0.efacet.query.QueryPackage;
import org.osgi.framework.Bundle;
public class EObjectLiteralQueryImplementationFactory implements IQueryImplementationFactory {
public EClass getManagedQueryType() {
return QueryPackage.eINSTANCE.getEObjectLiteralQuery();
}
public IQueryImplementation create(final Query query, final Bundle queryBundle, final IDerivedTypedElementManager manager) throws DerivedTypedElementException {
final EObjectLiteralQueryImplementation evaluator = new EObjectLiteralQueryImplementation();
evaluator.setCheckResultType(true);
return evaluator;
}
}