aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query-viatra/src/main/java/tools/refinery/store/query/viatra/internal/rete/recipe/RefineryRecipesFactory.java
blob: 1f8b30345a1520ca2139f0522fc5e3e4a3377726 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * SPDX-FileCopyrightText: 2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.store.query.viatra.internal.rete.recipe;

import org.eclipse.emf.ecore.EDataType;
import org.eclipse.emf.ecore.EFactory;
import tools.refinery.store.query.literal.Connectivity;

// Naming and index computation follows EMF conventions.
@SuppressWarnings("squid:S115")
public interface RefineryRecipesFactory extends EFactory {
	RefineryRecipesFactory eINSTANCE = RefineryRecipesFactoryImpl.init();

	RepresentativeElectionRecipe createRepresentativeElectionRecipe();

	Connectivity createConnectivityFromString(EDataType eDataType, String initialValue);

	String convertConnectivityToString(EDataType eDataType, Object instanceValue);
}