aboutsummaryrefslogtreecommitdiffstats
path: root/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logicresult/LogicresultFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logicresult/LogicresultFactory.java')
-rw-r--r--Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logicresult/LogicresultFactory.java114
1 files changed, 114 insertions, 0 deletions
diff --git a/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logicresult/LogicresultFactory.java b/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logicresult/LogicresultFactory.java
new file mode 100644
index 00000000..24f62cc3
--- /dev/null
+++ b/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logicresult/LogicresultFactory.java
@@ -0,0 +1,114 @@
1/**
2 */
3package hu.bme.mit.inf.dslreasoner.logic.model.logicresult;
4
5import org.eclipse.emf.ecore.EFactory;
6
7/**
8 * <!-- begin-user-doc -->
9 * The <b>Factory</b> for the model.
10 * It provides a create method for each non-abstract class of the model.
11 * <!-- end-user-doc -->
12 * @see hu.bme.mit.inf.dslreasoner.logic.model.logicresult.LogicresultPackage
13 * @generated
14 */
15public interface LogicresultFactory extends EFactory {
16 /**
17 * The singleton instance of the factory.
18 * <!-- begin-user-doc -->
19 * <!-- end-user-doc -->
20 * @generated
21 */
22 LogicresultFactory eINSTANCE = hu.bme.mit.inf.dslreasoner.logic.model.logicresult.impl.LogicresultFactoryImpl.init();
23
24 /**
25 * Returns a new object of class '<em>Model Result</em>'.
26 * <!-- begin-user-doc -->
27 * <!-- end-user-doc -->
28 * @return a new object of class '<em>Model Result</em>'.
29 * @generated
30 */
31 ModelResult createModelResult();
32
33 /**
34 * Returns a new object of class '<em>Inconsistency Result</em>'.
35 * <!-- begin-user-doc -->
36 * <!-- end-user-doc -->
37 * @return a new object of class '<em>Inconsistency Result</em>'.
38 * @generated
39 */
40 InconsistencyResult createInconsistencyResult();
41
42 /**
43 * Returns a new object of class '<em>Insuficient Resources Result</em>'.
44 * <!-- begin-user-doc -->
45 * <!-- end-user-doc -->
46 * @return a new object of class '<em>Insuficient Resources Result</em>'.
47 * @generated
48 */
49 InsuficientResourcesResult createInsuficientResourcesResult();
50
51 /**
52 * Returns a new object of class '<em>Error Result</em>'.
53 * <!-- begin-user-doc -->
54 * <!-- end-user-doc -->
55 * @return a new object of class '<em>Error Result</em>'.
56 * @generated
57 */
58 ErrorResult createErrorResult();
59
60 /**
61 * Returns a new object of class '<em>Statistics</em>'.
62 * <!-- begin-user-doc -->
63 * <!-- end-user-doc -->
64 * @return a new object of class '<em>Statistics</em>'.
65 * @generated
66 */
67 Statistics createStatistics();
68
69 /**
70 * Returns a new object of class '<em>Undecidable Result</em>'.
71 * <!-- begin-user-doc -->
72 * <!-- end-user-doc -->
73 * @return a new object of class '<em>Undecidable Result</em>'.
74 * @generated
75 */
76 UndecidableResult createUndecidableResult();
77
78 /**
79 * Returns a new object of class '<em>Int Statistic Entry</em>'.
80 * <!-- begin-user-doc -->
81 * <!-- end-user-doc -->
82 * @return a new object of class '<em>Int Statistic Entry</em>'.
83 * @generated
84 */
85 IntStatisticEntry createIntStatisticEntry();
86
87 /**
88 * Returns a new object of class '<em>Real Statistic Entry</em>'.
89 * <!-- begin-user-doc -->
90 * <!-- end-user-doc -->
91 * @return a new object of class '<em>Real Statistic Entry</em>'.
92 * @generated
93 */
94 RealStatisticEntry createRealStatisticEntry();
95
96 /**
97 * Returns a new object of class '<em>String Statistic Entry</em>'.
98 * <!-- begin-user-doc -->
99 * <!-- end-user-doc -->
100 * @return a new object of class '<em>String Statistic Entry</em>'.
101 * @generated
102 */
103 StringStatisticEntry createStringStatisticEntry();
104
105 /**
106 * Returns the package supported by this factory.
107 * <!-- begin-user-doc -->
108 * <!-- end-user-doc -->
109 * @return the package supported by this factory.
110 * @generated
111 */
112 LogicresultPackage getLogicresultPackage();
113
114} //LogicresultFactory