aboutsummaryrefslogtreecommitdiffstats
path: root/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logicresult/impl/LogicResultImpl.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/impl/LogicResultImpl.java')
-rw-r--r--Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logicresult/impl/LogicResultImpl.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logicresult/impl/LogicResultImpl.java b/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logicresult/impl/LogicResultImpl.java
index 1bd5c833..a49e0bce 100644
--- a/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logicresult/impl/LogicResultImpl.java
+++ b/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logicresult/impl/LogicResultImpl.java
@@ -111,6 +111,7 @@ public abstract class LogicResultImpl extends MinimalEObjectImpl.Container imple
111 * <!-- end-user-doc --> 111 * <!-- end-user-doc -->
112 * @generated 112 * @generated
113 */ 113 */
114 @Override
114 public LogicProblem getProblem() { 115 public LogicProblem getProblem() {
115 if (problem != null && problem.eIsProxy()) { 116 if (problem != null && problem.eIsProxy()) {
116 InternalEObject oldProblem = (InternalEObject)problem; 117 InternalEObject oldProblem = (InternalEObject)problem;
@@ -137,6 +138,7 @@ public abstract class LogicResultImpl extends MinimalEObjectImpl.Container imple
137 * <!-- end-user-doc --> 138 * <!-- end-user-doc -->
138 * @generated 139 * @generated
139 */ 140 */
141 @Override
140 public void setProblem(LogicProblem newProblem) { 142 public void setProblem(LogicProblem newProblem) {
141 LogicProblem oldProblem = problem; 143 LogicProblem oldProblem = problem;
142 problem = newProblem; 144 problem = newProblem;
@@ -149,6 +151,7 @@ public abstract class LogicResultImpl extends MinimalEObjectImpl.Container imple
149 * <!-- end-user-doc --> 151 * <!-- end-user-doc -->
150 * @generated 152 * @generated
151 */ 153 */
154 @Override
152 public Statistics getStatistics() { 155 public Statistics getStatistics() {
153 return statistics; 156 return statistics;
154 } 157 }
@@ -173,6 +176,7 @@ public abstract class LogicResultImpl extends MinimalEObjectImpl.Container imple
173 * <!-- end-user-doc --> 176 * <!-- end-user-doc -->
174 * @generated 177 * @generated
175 */ 178 */
179 @Override
176 public void setStatistics(Statistics newStatistics) { 180 public void setStatistics(Statistics newStatistics) {
177 if (newStatistics != statistics) { 181 if (newStatistics != statistics) {
178 NotificationChain msgs = null; 182 NotificationChain msgs = null;
@@ -192,6 +196,7 @@ public abstract class LogicResultImpl extends MinimalEObjectImpl.Container imple
192 * <!-- end-user-doc --> 196 * <!-- end-user-doc -->
193 * @generated 197 * @generated
194 */ 198 */
199 @Override
195 public Object getTrace() { 200 public Object getTrace() {
196 return trace; 201 return trace;
197 } 202 }
@@ -201,6 +206,7 @@ public abstract class LogicResultImpl extends MinimalEObjectImpl.Container imple
201 * <!-- end-user-doc --> 206 * <!-- end-user-doc -->
202 * @generated 207 * @generated
203 */ 208 */
209 @Override
204 public void setTrace(Object newTrace) { 210 public void setTrace(Object newTrace) {
205 Object oldTrace = trace; 211 Object oldTrace = trace;
206 trace = newTrace; 212 trace = newTrace;
@@ -213,6 +219,7 @@ public abstract class LogicResultImpl extends MinimalEObjectImpl.Container imple
213 * <!-- end-user-doc --> 219 * <!-- end-user-doc -->
214 * @generated 220 * @generated
215 */ 221 */
222 @Override
216 public EList<Object> getRepresentation() { 223 public EList<Object> getRepresentation() {
217 if (representation == null) { 224 if (representation == null) {
218 representation = new EDataTypeUniqueEList<Object>(Object.class, this, LogicresultPackage.LOGIC_RESULT__REPRESENTATION); 225 representation = new EDataTypeUniqueEList<Object>(Object.class, this, LogicresultPackage.LOGIC_RESULT__REPRESENTATION);
@@ -334,7 +341,7 @@ public abstract class LogicResultImpl extends MinimalEObjectImpl.Container imple
334 public String toString() { 341 public String toString() {
335 if (eIsProxy()) return super.toString(); 342 if (eIsProxy()) return super.toString();
336 343
337 StringBuffer result = new StringBuffer(super.toString()); 344 StringBuilder result = new StringBuilder(super.toString());
338 result.append(" (trace: "); 345 result.append(" (trace: ");
339 result.append(trace); 346 result.append(trace);
340 result.append(", representation: "); 347 result.append(", representation: ");