From 022a1e52e0cf20f64d9cd6685c65d945c04eaecc Mon Sep 17 00:00:00 2001 From: ArenBabikian Date: Sat, 13 Jun 2020 19:24:25 -0400 Subject: remove Alloy solver copy --- .../alloyLanguage/impl/ALSLessImpl.java | 264 --------------------- 1 file changed, 264 deletions(-) delete mode 100644 Solvers/Alloy-Solver2/hu.bme.mit.inf.dslreasoner.alloy.language/src-gen/hu/bme/mit/inf/dslreasoner/alloyLanguage/impl/ALSLessImpl.java (limited to 'Solvers/Alloy-Solver2/hu.bme.mit.inf.dslreasoner.alloy.language/src-gen/hu/bme/mit/inf/dslreasoner/alloyLanguage/impl/ALSLessImpl.java') diff --git a/Solvers/Alloy-Solver2/hu.bme.mit.inf.dslreasoner.alloy.language/src-gen/hu/bme/mit/inf/dslreasoner/alloyLanguage/impl/ALSLessImpl.java b/Solvers/Alloy-Solver2/hu.bme.mit.inf.dslreasoner.alloy.language/src-gen/hu/bme/mit/inf/dslreasoner/alloyLanguage/impl/ALSLessImpl.java deleted file mode 100644 index 4c6b4282..00000000 --- a/Solvers/Alloy-Solver2/hu.bme.mit.inf.dslreasoner.alloy.language/src-gen/hu/bme/mit/inf/dslreasoner/alloyLanguage/impl/ALSLessImpl.java +++ /dev/null @@ -1,264 +0,0 @@ -/** - */ -package hu.bme.mit.inf.dslreasoner.alloyLanguage.impl; - -import hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSLess; -import hu.bme.mit.inf.dslreasoner.alloyLanguage.ALSTerm; -import hu.bme.mit.inf.dslreasoner.alloyLanguage.AlloyLanguagePackage; - -import org.eclipse.emf.common.notify.Notification; -import org.eclipse.emf.common.notify.NotificationChain; - -import org.eclipse.emf.ecore.EClass; -import org.eclipse.emf.ecore.InternalEObject; - -import org.eclipse.emf.ecore.impl.ENotificationImpl; - -/** - * - * An implementation of the model object 'ALS Less'. - * - *

- * The following features are implemented: - *

- * - * - * @generated - */ -public class ALSLessImpl extends ALSTermImpl implements ALSLess -{ - /** - * The cached value of the '{@link #getLeftOperand() Left Operand}' containment reference. - * - * - * @see #getLeftOperand() - * @generated - * @ordered - */ - protected ALSTerm leftOperand; - - /** - * The cached value of the '{@link #getRightOperand() Right Operand}' containment reference. - * - * - * @see #getRightOperand() - * @generated - * @ordered - */ - protected ALSTerm rightOperand; - - /** - * - * - * @generated - */ - protected ALSLessImpl() - { - super(); - } - - /** - * - * - * @generated - */ - @Override - protected EClass eStaticClass() - { - return AlloyLanguagePackage.Literals.ALS_LESS; - } - - /** - * - * - * @generated - */ - public ALSTerm getLeftOperand() - { - return leftOperand; - } - - /** - * - * - * @generated - */ - public NotificationChain basicSetLeftOperand(ALSTerm newLeftOperand, NotificationChain msgs) - { - ALSTerm oldLeftOperand = leftOperand; - leftOperand = newLeftOperand; - if (eNotificationRequired()) - { - ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, AlloyLanguagePackage.ALS_LESS__LEFT_OPERAND, oldLeftOperand, newLeftOperand); - if (msgs == null) msgs = notification; else msgs.add(notification); - } - return msgs; - } - - /** - * - * - * @generated - */ - public void setLeftOperand(ALSTerm newLeftOperand) - { - if (newLeftOperand != leftOperand) - { - NotificationChain msgs = null; - if (leftOperand != null) - msgs = ((InternalEObject)leftOperand).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - AlloyLanguagePackage.ALS_LESS__LEFT_OPERAND, null, msgs); - if (newLeftOperand != null) - msgs = ((InternalEObject)newLeftOperand).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - AlloyLanguagePackage.ALS_LESS__LEFT_OPERAND, null, msgs); - msgs = basicSetLeftOperand(newLeftOperand, msgs); - if (msgs != null) msgs.dispatch(); - } - else if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, AlloyLanguagePackage.ALS_LESS__LEFT_OPERAND, newLeftOperand, newLeftOperand)); - } - - /** - * - * - * @generated - */ - public ALSTerm getRightOperand() - { - return rightOperand; - } - - /** - * - * - * @generated - */ - public NotificationChain basicSetRightOperand(ALSTerm newRightOperand, NotificationChain msgs) - { - ALSTerm oldRightOperand = rightOperand; - rightOperand = newRightOperand; - if (eNotificationRequired()) - { - ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, AlloyLanguagePackage.ALS_LESS__RIGHT_OPERAND, oldRightOperand, newRightOperand); - if (msgs == null) msgs = notification; else msgs.add(notification); - } - return msgs; - } - - /** - * - * - * @generated - */ - public void setRightOperand(ALSTerm newRightOperand) - { - if (newRightOperand != rightOperand) - { - NotificationChain msgs = null; - if (rightOperand != null) - msgs = ((InternalEObject)rightOperand).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - AlloyLanguagePackage.ALS_LESS__RIGHT_OPERAND, null, msgs); - if (newRightOperand != null) - msgs = ((InternalEObject)newRightOperand).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - AlloyLanguagePackage.ALS_LESS__RIGHT_OPERAND, null, msgs); - msgs = basicSetRightOperand(newRightOperand, msgs); - if (msgs != null) msgs.dispatch(); - } - else if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, AlloyLanguagePackage.ALS_LESS__RIGHT_OPERAND, newRightOperand, newRightOperand)); - } - - /** - * - * - * @generated - */ - @Override - public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) - { - switch (featureID) - { - case AlloyLanguagePackage.ALS_LESS__LEFT_OPERAND: - return basicSetLeftOperand(null, msgs); - case AlloyLanguagePackage.ALS_LESS__RIGHT_OPERAND: - return basicSetRightOperand(null, msgs); - } - return super.eInverseRemove(otherEnd, featureID, msgs); - } - - /** - * - * - * @generated - */ - @Override - public Object eGet(int featureID, boolean resolve, boolean coreType) - { - switch (featureID) - { - case AlloyLanguagePackage.ALS_LESS__LEFT_OPERAND: - return getLeftOperand(); - case AlloyLanguagePackage.ALS_LESS__RIGHT_OPERAND: - return getRightOperand(); - } - return super.eGet(featureID, resolve, coreType); - } - - /** - * - * - * @generated - */ - @Override - public void eSet(int featureID, Object newValue) - { - switch (featureID) - { - case AlloyLanguagePackage.ALS_LESS__LEFT_OPERAND: - setLeftOperand((ALSTerm)newValue); - return; - case AlloyLanguagePackage.ALS_LESS__RIGHT_OPERAND: - setRightOperand((ALSTerm)newValue); - return; - } - super.eSet(featureID, newValue); - } - - /** - * - * - * @generated - */ - @Override - public void eUnset(int featureID) - { - switch (featureID) - { - case AlloyLanguagePackage.ALS_LESS__LEFT_OPERAND: - setLeftOperand((ALSTerm)null); - return; - case AlloyLanguagePackage.ALS_LESS__RIGHT_OPERAND: - setRightOperand((ALSTerm)null); - return; - } - super.eUnset(featureID); - } - - /** - * - * - * @generated - */ - @Override - public boolean eIsSet(int featureID) - { - switch (featureID) - { - case AlloyLanguagePackage.ALS_LESS__LEFT_OPERAND: - return leftOperand != null; - case AlloyLanguagePackage.ALS_LESS__RIGHT_OPERAND: - return rightOperand != null; - } - return super.eIsSet(featureID); - } - -} //ALSLessImpl -- cgit v1.2.3-70-g09d2