Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e85eb2eabdc9e8e24bcb477877fda35dddb50694 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*******************************************************************************
 * 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 java.util.List;

import org.eclipse.emf.ecore.EObject;
import org.eclipse.papyrus.emf.facet.efacet.core.IFacetManager;
import org.eclipse.papyrus.emf.facet.efacet.core.exception.DerivedTypedElementException;
import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.DerivedTypedElement;
import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.FacetOperation;
import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.ParameterValue;
import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query;

/**
 * Interface implemented by all EMF Facet query evaluators.
 * <p>
 * A query evaluator may choose to implement {@link IQueryCollectionImplementation} instead if it wants to improve the performance of evaluation on collections of elements.
 *
 * @since 0.2
 */
public interface IQueryImplementation {

	/**
	 * This method must be implemented by each sub class to evaluate a query
	 *
	 * @param query
	 *            The query to evaluate
	 * @param feature
	 *            The feature or operation to get on the source
	 * @param source
	 *            The model element on which the query is evaluated
	 * @param parameterValues
	 *            The derived typed element's query parameter values (in the case of a {@link FacetOperation}); can be <code>null</code>
	 * @return the result, which can be either a single object or a collection of values depending on the multiplicity
	 *         of the given derived typed element
	 * @throws DerivedTypedElementException
	 *             if the query could not be evaluated correctly to get the value
	 */
	Object getValue(Query query, DerivedTypedElement feature, EObject source,
			List<ParameterValue> parameterValues, IFacetManager facetManager)
			throws DerivedTypedElementException;

	/**
	 * This method must be implemented by each sub class that allows to set the value of a derivedTypedElement using a
	 * query
	 *
	 * @param query
	 *            The query that sets the value
	 * @param feature
	 *            The derived typed element to set
	 * @param source
	 *            The model element on which the derived typed element must be set
	 * @param parameterValues
	 *            The query parameter values (in the case of a {@link FacetOperation}); can be <code>null</code>
	 * @param newValue
	 *            the value to set on the derived typed element
	 * @throws DerivedTypedElementException
	 *             if the query could not be evaluated correctly to set the value
	 */
	void setValue(Query query, DerivedTypedElement feature, EObject source,
			List<ParameterValue> parameterValues, Object newValue)
			throws DerivedTypedElementException;

	/**
	 * Return whether to check the type of the query result after its evaluation
	 * <p>
	 * Normally, this is <code>true</code>, but the query evaluator can choose to skip the check, for example if the return type of the query can't be loaded.
	 *
	 * @return whether to check the type of the query result after its evaluation
	 */
	boolean isCheckResultType();

}

Back to the top