Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fe8239543604c48a5a6bfbb36360cdb18230274b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*******************************************************************************
 * Copyright (c) 2012 CEA LIST.
 * 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:
 *    Nicolas Bros (Mia-Software) - Bug 376941 - [EFacet] Facet operation arguments in Facet model
 *******************************************************************************/
package org.eclipse.papyrus.emf.facet.efacet.core.query;

import org.eclipse.emf.ecore.EClass;
import org.eclipse.papyrus.emf.facet.efacet.core.IDerivedTypedElementManager;
import org.eclipse.papyrus.emf.facet.efacet.core.exception.DerivedTypedElementException;
import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query;
import org.osgi.framework.Bundle;

/**
 * This factory allows clients to create a {@link IQueryImplementation} for queries corresponding to this type of
 * factory.
 * 
 * @since 0.2
 */
public interface IQueryImplementationFactory {

	/**
	 * Create a query implementation for the given query.
	 * 
	 * @param query
	 *            the query to create an implementation for
	 * @param queryBundle
	 *            the bundle in which the query is defined. May be <code>null</code> if the query is not defined in a
	 *            {@link Bundle}.
	 */
	IQueryImplementation create(Query query, Bundle queryBundle, IDerivedTypedElementManager manager)
			throws DerivedTypedElementException;

	/**
	 * Return the type of query handled by this implementation.
	 * 
	 * @return the type of query this implementation handles.
	 */
	EClass getManagedQueryType();
}

Back to the top