diff --git a/AB/META-INF/MANIFEST.MF b/AB/META-INF/MANIFEST.MF index 6ef165f4d766b30cc7cf2d67ae4b832a007cd5d8..ee622d137255bd8550c1d5cb58fd775f28e99bcb 100644 --- a/AB/META-INF/MANIFEST.MF +++ b/AB/META-INF/MANIFEST.MF @@ -12,5 +12,5 @@ Export-Package: ab, ab.util Require-Bundle: org.eclipse.core.runtime, org.eclipse.emf.ecore;visibility:=reexport, - fr.inria.diverse.cloning.cloner;bundle-version="0.1.0" + fr.inria.diverse.cloning.runtime;bundle-version="0.1.0" Bundle-ActivationPolicy: lazy diff --git a/AB/src/yayabdeep/ADeepPImpl.java b/AB/src/yayabdeep/ADeepPImpl.java new file mode 100644 index 0000000000000000000000000000000000000000..5597512d320b9bef69f6789b7a9dfec59ef25048 --- /dev/null +++ b/AB/src/yayabdeep/ADeepPImpl.java @@ -0,0 +1,278 @@ +/** + */ + +package yayabdeep; + +import ab.A; +import ab.AbPackage; +import ab.B; +import java.util.Collection; +import org.eclipse.emf.common.notify.Notification; +import org.eclipse.emf.common.notify.NotificationChain; +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.InternalEObject; +import org.eclipse.emf.ecore.impl.ENotificationImpl; +import org.eclipse.emf.ecore.impl.MinimalEObjectImpl; +import org.eclipse.emf.ecore.util.EObjectContainmentEList; +import org.eclipse.emf.ecore.util.InternalEList; + +/** + * + * An implementation of the model object 'A'. + * + *

+ * The following features are implemented: + *

+ *

+ * @generated + */ +public class ADeepPImpl extends MinimalEObjectImpl.Container implements A { + protected A cloned; + /** + * The default value of the ' + * { @link #getI() I} + * ' attribute. + * + * + * @see #getI() + * @generated + * @ordered + */ + protected static final int I_EDEFAULT = 0; + /** + * The default value of the ' + * { @link #getJ_m() Jm} + * ' attribute. + * + * + * @see #getJ_m() + * @generated + * @ordered + */ + protected static final int JM_EDEFAULT = 0; + /** + * The cached value of the ' + * { @link #getJ_m() Jm} + * ' attribute. + * + * + * @see #getJ_m() + * @generated + * @ordered + */ + protected int j_m = JM_EDEFAULT; + /** + * The cached value of the ' + * { @link #getB() B} + * ' containment reference list. + * + * + * @see #getB() + * @generated + * @ordered + */ + protected EList b; + + /** + * + * + * @generated + */ + protected ADeepPImpl(A clonedParam) { + super(); + cloned = clonedParam; + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() { + return AbPackage.Literals.A; + } + + /** + * + * + * @generated + */ + public int getI() { + return cloned.getI(); + } + + /** + * + * + * @generated + */ + public void setI(int newI) { + System.out + .println("[Info] ADeepPImpl: i is readonly and cannot be set."); + } + + /** + * + * + * @generated + */ + public int getJ_m() { + return j_m; + } + + /** + * + * + * @generated + */ + public void setJ_m(int newJ_m) { + int oldJ_m = j_m; + j_m = newJ_m; + if (eNotificationRequired()) + eNotify(new ENotificationImpl(this, Notification.SET, + AbPackage.A__JM, oldJ_m, j_m)); + + } + + /** + * + * + * @generated + */ + public EList getB() { + if (b == null) { + b = new EObjectContainmentEList(B.class, this, AbPackage.A__B); + } + + return b; + } + + /** + * + * + * @generated + */ + @Override + public NotificationChain eInverseRemove(InternalEObject otherEnd, + int featureID, NotificationChain msgs) { + switch (featureID) { + case AbPackage.A__B: + return ((InternalEList) getB()).basicRemove(otherEnd, msgs); + } + return super.eInverseRemove(otherEnd, featureID, msgs); + } + + /** + * + * + * @generated + */ + @Override + public Object eGet(int featureID, boolean resolve, boolean coreType) { + switch (featureID) { + case AbPackage.A__I: + return getI(); + case AbPackage.A__JM: + return getJ_m(); + case AbPackage.A__B: + return getB(); + } + return super.eGet(featureID, resolve, coreType); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + @Override + public void eSet(int featureID, Object newValue) { + switch (featureID) { + case AbPackage.A__I: + setI((Integer) newValue); + return; + case AbPackage.A__JM: + setJ_m((Integer) newValue); + return; + case AbPackage.A__B: + getB().clear(); + getB().addAll((Collection) newValue); + return; + } + super.eSet(featureID, newValue); + } + + /** + * + * + * @generated + */ + @Override + public void eUnset(int featureID) { + switch (featureID) { + case AbPackage.A__I: + setI(I_EDEFAULT); + return; + case AbPackage.A__JM: + setJ_m(JM_EDEFAULT); + return; + case AbPackage.A__B: + getB().clear(); + return; + } + super.eUnset(featureID); + } + + /** + * + * + * @generated + */ + @Override + public boolean eIsSet(int featureID) { + switch (featureID) { + case AbPackage.A__I: + return cloned.getI() != I_EDEFAULT; + case AbPackage.A__JM: + return j_m != JM_EDEFAULT; + case AbPackage.A__B: + return b != null && !b.isEmpty(); + } + return super.eIsSet(featureID); + } + + /** + * + * + * @generated + */ + @Override + public String toString() { + if (eIsProxy()) + return super.toString(); + + StringBuffer result = new StringBuffer(super.toString()); + result.append(" (i: "); + result.append(cloned.getI()); + result.append(", j_m: "); + result.append(j_m); + result.append(')'); + return result.toString(); + } + +} +//AImpl + diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm2deep/Class42DeepPImpl.java b/AB/src/yayabdeep/BDeepPImpl.java similarity index 63% rename from cloningBenchmarkMaterial5921503524522529258/src/mm2deep/Class42DeepPImpl.java rename to AB/src/yayabdeep/BDeepPImpl.java index 21b4ba5ca3c3f2fe4c4ac099b638e9e477a4be2a..e14c765670d504182e344b7183a0239e14df9e39 100644 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm2deep/Class42DeepPImpl.java +++ b/AB/src/yayabdeep/BDeepPImpl.java @@ -1,50 +1,49 @@ /** */ -package mm2deep; +package yayabdeep; -import fr.inria.diverse.cloning.cloner.emfextension.impl.AbstractShareableEObject; -import mm2.Class42; -import mm2.Mm2Package; +import ab.AbPackage; +import ab.B; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; +import org.eclipse.emf.ecore.impl.MinimalEObjectImpl; /** * - * An implementation of the model object 'Class42'. + * An implementation of the model object 'B'. * *

* The following features are implemented: *

    *
  • - * { @link mm2.impl.Class42DeepPImpl#getAttEInt_382 Att EInt 382} + * { @link ab.impl.BDeepPImpl#getX X} *
  • *
*

* @generated */ -public class Class42DeepPImpl extends AbstractShareableEObject implements - Class42 { - protected Class42 cloned; +public class BDeepPImpl extends MinimalEObjectImpl.Container implements B { + protected B cloned; /** * The default value of the ' - * { @link #getAttEInt_382() Att EInt 382} + * { @link #getX() X} * ' attribute. * * - * @see #getAttEInt_382() + * @see #getX() * @generated * @ordered */ - protected static final int ATT_EINT_382_EDEFAULT = 0; + protected static final int X_EDEFAULT = 0; /** * * * @generated */ - protected Class42DeepPImpl(Class42 clonedParam) { + protected BDeepPImpl(B clonedParam) { super(); cloned = clonedParam; } @@ -56,7 +55,7 @@ public class Class42DeepPImpl extends AbstractShareableEObject implements */ @Override protected EClass eStaticClass() { - return Mm2Package.Literals.CLASS42; + return AbPackage.Literals.B; } /** @@ -64,8 +63,8 @@ public class Class42DeepPImpl extends AbstractShareableEObject implements * * @generated */ - public int getAttEInt_382() { - return cloned.getAttEInt_382(); + public int getX() { + return cloned.getX(); } /** @@ -73,7 +72,9 @@ public class Class42DeepPImpl extends AbstractShareableEObject implements * * @generated */ - public void setAttEInt_382(int newAttEInt_382) { + public void setX(int newX) { + System.out + .println("[Info] BDeepPImpl: x is readonly and cannot be set."); } /** @@ -84,8 +85,8 @@ public class Class42DeepPImpl extends AbstractShareableEObject implements @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { - case Mm2Package.CLASS42__ATT_EINT_382: - return getAttEInt_382(); + case AbPackage.B__X: + return getX(); } return super.eGet(featureID, resolve, coreType); } @@ -98,8 +99,8 @@ public class Class42DeepPImpl extends AbstractShareableEObject implements @Override public void eSet(int featureID, Object newValue) { switch (featureID) { - case Mm2Package.CLASS42__ATT_EINT_382: - setAttEInt_382((Integer) newValue); + case AbPackage.B__X: + setX((Integer) newValue); return; } super.eSet(featureID, newValue); @@ -113,8 +114,8 @@ public class Class42DeepPImpl extends AbstractShareableEObject implements @Override public void eUnset(int featureID) { switch (featureID) { - case Mm2Package.CLASS42__ATT_EINT_382: - setAttEInt_382(ATT_EINT_382_EDEFAULT); + case AbPackage.B__X: + setX(X_EDEFAULT); return; } super.eUnset(featureID); @@ -128,8 +129,8 @@ public class Class42DeepPImpl extends AbstractShareableEObject implements @Override public boolean eIsSet(int featureID) { switch (featureID) { - case Mm2Package.CLASS42__ATT_EINT_382: - return cloned.getAttEInt_382() != ATT_EINT_382_EDEFAULT; + case AbPackage.B__X: + return cloned.getX() != X_EDEFAULT; } return super.eIsSet(featureID); } @@ -145,12 +146,12 @@ public class Class42DeepPImpl extends AbstractShareableEObject implements return super.toString(); StringBuffer result = new StringBuffer(super.toString()); - result.append(" (attEInt_382: "); - result.append(cloned.getAttEInt_382()); + result.append(" (x: "); + result.append(cloned.getX()); result.append(')'); return result.toString(); } } -//Class42Impl +//BImpl diff --git a/AB/src/yayabdeep/YayABDeepCloningMaterial.java b/AB/src/yayabdeep/YayABDeepCloningMaterial.java new file mode 100644 index 0000000000000000000000000000000000000000..7440b01760b550a71b19b26f1735ec77bd3920e2 --- /dev/null +++ b/AB/src/yayabdeep/YayABDeepCloningMaterial.java @@ -0,0 +1,22 @@ +package yayabdeep; + +import fr.inria.diverse.cloning.runtime.common.CloningMaterial; +import fr.inria.diverse.cloning.runtime.emfextension.impl.LooseCopier; +import fr.inria.diverse.cloning.runtime.common.MetamodelTags; + +public class YayABDeepCloningMaterial implements CloningMaterial { +private static YayABDeepCloningMaterial instance; +private YayABDeepTags tags; +private YayABDeepCloningMaterial(YayABDeepTags tags){this.tags = tags; +}; +public static YayABDeepCloningMaterial getInstance() { +if (instance == null) +instance = new YayABDeepCloningMaterial(new YayABDeepTags()); +return instance; +} +public MetamodelTags getTags() { +return tags;} +public LooseCopier createLightCopier() { +return new YayABDeepLightCopier();} +} + diff --git a/AB/src/yayabdeep/YayABDeepLightCopier.java b/AB/src/yayabdeep/YayABDeepLightCopier.java new file mode 100644 index 0000000000000000000000000000000000000000..3758eb792092fd92ef862bcdd23d6da6db364532 --- /dev/null +++ b/AB/src/yayabdeep/YayABDeepLightCopier.java @@ -0,0 +1,19 @@ +package yayabdeep; + +import org.eclipse.emf.ecore.EObject; +import fr.inria.diverse.cloning.runtime.emfextension.impl.LooseCopier; +import ab.A; +import ab.B; + +@SuppressWarnings("serial") +public class YayABDeepLightCopier extends LooseCopier { +protected EObject createCopy(EObject eObject) { +if (eObject instanceof A) +return new ADeepPImpl((A)eObject); +if (eObject instanceof B) +return new BDeepPImpl((B)eObject); +else +return super.createCopy(eObject); +} +} + diff --git a/AB/src/yayabdeep/YayABDeepTags.java b/AB/src/yayabdeep/YayABDeepTags.java new file mode 100644 index 0000000000000000000000000000000000000000..ffc230bb718d9d1ff3e27efe9f8a4b9db93511b5 --- /dev/null +++ b/AB/src/yayabdeep/YayABDeepTags.java @@ -0,0 +1,49 @@ +package yayabdeep; + +import org.eclipse.emf.ecore.EClass; +import fr.inria.diverse.cloning.runtime.common.ClassTag; +import fr.inria.diverse.cloning.runtime.common.MetamodelTags; +import org.eclipse.emf.ecore.EStructuralFeature; +import ab.A; +import ab.B; + +public class YayABDeepTags implements MetamodelTags { +public ClassTag getTagOf(EClass eClass) { +if (eClass.equals(ab.AbPackage.eINSTANCE.getA())) +return ClassTag.PARTIALLY_SHAREABLE; +if (eClass.equals(ab.AbPackage.eINSTANCE.getB())) +return ClassTag.PARTIALLY_SHAREABLE; +else +return null; +} +public boolean mayTagClassesShareable() { +return false;} +public boolean isPropertyShareable(EStructuralFeature prop) { +if (prop.equals(ab.AbPackage.eINSTANCE.getA_I())) +return true; +if (prop.equals(ab.AbPackage.eINSTANCE.getA_J_m())) +return false; +if (prop.equals(ab.AbPackage.eINSTANCE.getA_B())) +return false; +if (prop.equals(ab.AbPackage.eINSTANCE.getB_X())) +return true; +else +return false; +} +public double getShareableClassesRatio() { +return 0.0; +} +public double getPartShareableClassesRatio() { +return 1.0; +} +public double getIsolatedShareablePropertiesRatio() { +return 0.5; +} +public double getShareablePropertiesInPartShareableClassesDensity() { +return 1.0; +} +public double getShareablePropertiesInShareableClassesDensity() { +return 0.0; +} +} + diff --git a/AB/src/yayabmutclassonly/AMutClassOnlyPImpl.java b/AB/src/yayabmutclassonly/AMutClassOnlyPImpl.java new file mode 100644 index 0000000000000000000000000000000000000000..82626397f934f05541defed3d532dbcf652843e0 --- /dev/null +++ b/AB/src/yayabmutclassonly/AMutClassOnlyPImpl.java @@ -0,0 +1,264 @@ +/** + */ + +package yayabmutclassonly; + +import ab.A; +import ab.AbPackage; +import ab.B; +import java.util.Collection; +import org.eclipse.emf.common.notify.Notification; +import org.eclipse.emf.common.notify.NotificationChain; +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.InternalEObject; +import org.eclipse.emf.ecore.impl.ENotificationImpl; +import org.eclipse.emf.ecore.impl.MinimalEObjectImpl; +import org.eclipse.emf.ecore.util.EObjectContainmentEList; +import org.eclipse.emf.ecore.util.InternalEList; + +/** + * + * An implementation of the model object 'A'. + * + *

+ * The following features are implemented: + *

    + *
  • + * { @link ab.impl.AMutClassOnlyPImpl#getI I} + *
  • + *
  • + * { @link ab.impl.AMutClassOnlyPImpl#getJ_m Jm} + *
  • + *
  • + * { @link ab.impl.AMutClassOnlyPImpl#getB B} + *
  • + *
+ *

+ * @generated + */ +public class AMutClassOnlyPImpl extends MinimalEObjectImpl.Container implements + A { + protected A cloned; + /** + * The default value of the ' + * { @link #getI() I} + * ' attribute. + * + * + * @see #getI() + * @generated + * @ordered + */ + protected static final int I_EDEFAULT = 0; + /** + * The default value of the ' + * { @link #getJ_m() Jm} + * ' attribute. + * + * + * @see #getJ_m() + * @generated + * @ordered + */ + protected static final int JM_EDEFAULT = 0; + /** + * The cached value of the ' + * { @link #getJ_m() Jm} + * ' attribute. + * + * + * @see #getJ_m() + * @generated + * @ordered + */ + protected int j_m = JM_EDEFAULT; + + /** + * + * + * @generated + */ + protected AMutClassOnlyPImpl(A clonedParam) { + super(); + cloned = clonedParam; + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() { + return AbPackage.Literals.A; + } + + /** + * + * + * @generated + */ + public int getI() { + return cloned.getI(); + } + + /** + * + * + * @generated + */ + public void setI(int newI) { + System.out + .println("[Info] AMutClassOnlyPImpl: i is readonly and cannot be set."); + } + + /** + * + * + * @generated + */ + public int getJ_m() { + return j_m; + } + + /** + * + * + * @generated + */ + public void setJ_m(int newJ_m) { + int oldJ_m = j_m; + j_m = newJ_m; + if (eNotificationRequired()) + eNotify(new ENotificationImpl(this, Notification.SET, + AbPackage.A__JM, oldJ_m, j_m)); + + } + + /** + * + * + * @generated + */ + public EList getB() { + return cloned.getB(); + } + + /** + * + * + * @generated + */ + @Override + public NotificationChain eInverseRemove(InternalEObject otherEnd, + int featureID, NotificationChain msgs) { + switch (featureID) { + case AbPackage.A__B: + return ((InternalEList) getB()).basicRemove(otherEnd, msgs); + } + return super.eInverseRemove(otherEnd, featureID, msgs); + } + + /** + * + * + * @generated + */ + @Override + public Object eGet(int featureID, boolean resolve, boolean coreType) { + switch (featureID) { + case AbPackage.A__I: + return getI(); + case AbPackage.A__JM: + return getJ_m(); + case AbPackage.A__B: + return getB(); + } + return super.eGet(featureID, resolve, coreType); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + @Override + public void eSet(int featureID, Object newValue) { + switch (featureID) { + case AbPackage.A__I: + setI((Integer) newValue); + return; + case AbPackage.A__JM: + setJ_m((Integer) newValue); + return; + case AbPackage.A__B: + getB().clear(); + getB().addAll((Collection) newValue); + return; + } + super.eSet(featureID, newValue); + } + + /** + * + * + * @generated + */ + @Override + public void eUnset(int featureID) { + switch (featureID) { + case AbPackage.A__I: + setI(I_EDEFAULT); + return; + case AbPackage.A__JM: + setJ_m(JM_EDEFAULT); + return; + case AbPackage.A__B: + getB().clear(); + return; + } + super.eUnset(featureID); + } + + /** + * + * + * @generated + */ + @Override + public boolean eIsSet(int featureID) { + switch (featureID) { + case AbPackage.A__I: + return cloned.getI() != I_EDEFAULT; + case AbPackage.A__JM: + return j_m != JM_EDEFAULT; + case AbPackage.A__B: + return cloned.getB() != null && !cloned.getB().isEmpty(); + } + return super.eIsSet(featureID); + } + + /** + * + * + * @generated + */ + @Override + public String toString() { + if (eIsProxy()) + return super.toString(); + + StringBuffer result = new StringBuffer(super.toString()); + result.append(" (i: "); + result.append(cloned.getI()); + result.append(", j_m: "); + result.append(j_m); + result.append(')'); + return result.toString(); + } + +} +//AImpl + diff --git a/AB/src/yayabmutclassonly/YayABMutClassOnlyCloningMaterial.java b/AB/src/yayabmutclassonly/YayABMutClassOnlyCloningMaterial.java new file mode 100644 index 0000000000000000000000000000000000000000..d99e479c205a56f10347cf8d214a15b137eb0dac --- /dev/null +++ b/AB/src/yayabmutclassonly/YayABMutClassOnlyCloningMaterial.java @@ -0,0 +1,22 @@ +package yayabmutclassonly; + +import fr.inria.diverse.cloning.runtime.common.CloningMaterial; +import fr.inria.diverse.cloning.runtime.emfextension.impl.LooseCopier; +import fr.inria.diverse.cloning.runtime.common.MetamodelTags; + +public class YayABMutClassOnlyCloningMaterial implements CloningMaterial { +private static YayABMutClassOnlyCloningMaterial instance; +private YayABMutClassOnlyTags tags; +private YayABMutClassOnlyCloningMaterial(YayABMutClassOnlyTags tags){this.tags = tags; +}; +public static YayABMutClassOnlyCloningMaterial getInstance() { +if (instance == null) +instance = new YayABMutClassOnlyCloningMaterial(new YayABMutClassOnlyTags()); +return instance; +} +public MetamodelTags getTags() { +return tags;} +public LooseCopier createLightCopier() { +return new YayABMutClassOnlyLightCopier();} +} + diff --git a/AB/src/yayabmutclassonly/YayABMutClassOnlyLightCopier.java b/AB/src/yayabmutclassonly/YayABMutClassOnlyLightCopier.java new file mode 100644 index 0000000000000000000000000000000000000000..0f3ef3335625e10d9a51add113c8ca81f20424c6 --- /dev/null +++ b/AB/src/yayabmutclassonly/YayABMutClassOnlyLightCopier.java @@ -0,0 +1,19 @@ +package yayabmutclassonly; + +import org.eclipse.emf.ecore.EObject; +import fr.inria.diverse.cloning.runtime.emfextension.impl.LooseCopier; +import ab.A; +import ab.B; + +@SuppressWarnings("serial") +public class YayABMutClassOnlyLightCopier extends LooseCopier { +protected EObject createCopy(EObject eObject) { +if (eObject instanceof A) +return new AMutClassOnlyPImpl((A)eObject); +if (eObject instanceof B) +return eObject; +else +return super.createCopy(eObject); +} +} + diff --git a/AB/src/yayabmutclassonly/YayABMutClassOnlyTags.java b/AB/src/yayabmutclassonly/YayABMutClassOnlyTags.java new file mode 100644 index 0000000000000000000000000000000000000000..27e7b32ffa340f57e40f08a92c1677b25fa1bfb4 --- /dev/null +++ b/AB/src/yayabmutclassonly/YayABMutClassOnlyTags.java @@ -0,0 +1,49 @@ +package yayabmutclassonly; + +import org.eclipse.emf.ecore.EClass; +import fr.inria.diverse.cloning.runtime.common.ClassTag; +import fr.inria.diverse.cloning.runtime.common.MetamodelTags; +import org.eclipse.emf.ecore.EStructuralFeature; +import ab.A; +import ab.B; + +public class YayABMutClassOnlyTags implements MetamodelTags { +public ClassTag getTagOf(EClass eClass) { +if (eClass.equals(ab.AbPackage.eINSTANCE.getA())) +return ClassTag.PARTIALLY_SHAREABLE; +if (eClass.equals(ab.AbPackage.eINSTANCE.getB())) +return ClassTag.COMPLETELY_SHAREABLE; +else +return null; +} +public boolean mayTagClassesShareable() { +return true;} +public boolean isPropertyShareable(EStructuralFeature prop) { +if (prop.equals(ab.AbPackage.eINSTANCE.getA_I())) +return true; +if (prop.equals(ab.AbPackage.eINSTANCE.getA_J_m())) +return false; +if (prop.equals(ab.AbPackage.eINSTANCE.getA_B())) +return true; +if (prop.equals(ab.AbPackage.eINSTANCE.getB_X())) +return true; +else +return false; +} +public double getShareableClassesRatio() { +return 0.5; +} +public double getPartShareableClassesRatio() { +return 0.5; +} +public double getIsolatedShareablePropertiesRatio() { +return 0.5; +} +public double getShareablePropertiesInPartShareableClassesDensity() { +return 2.0; +} +public double getShareablePropertiesInShareableClassesDensity() { +return 1.0; +} +} + diff --git a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/generator/EMFImpl2PImpl.java b/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/generator/EMFImpl2PImpl.java deleted file mode 100644 index ef5138cacc1e43cea0bba380c27e4196cd2a2ba8..0000000000000000000000000000000000000000 --- a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/generator/EMFImpl2PImpl.java +++ /dev/null @@ -1,5 +0,0 @@ -package fr.diverse.fancyemfcloning.generator; - -public class EMFImpl2PImpl { - -} diff --git a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/generator/FactoryGenerator.java b/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/generator/FactoryGenerator.java deleted file mode 100644 index 380998d9cceeb3e5aff7a4bb06e3008f471e680f..0000000000000000000000000000000000000000 --- a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/generator/FactoryGenerator.java +++ /dev/null @@ -1,5 +0,0 @@ -package fr.diverse.fancyemfcloning.generator; - -public class FactoryGenerator { - -} diff --git a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/main/Application.java b/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/main/Application.java deleted file mode 100644 index da8a74f8ea85b6f69eaf5c25aa5ba09dafb2c3a6..0000000000000000000000000000000000000000 --- a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/main/Application.java +++ /dev/null @@ -1,502 +0,0 @@ -package fr.diverse.fancyemfcloning.main; - -import java.io.File; -import java.io.FileInputStream; -import java.io.FileOutputStream; -import java.io.InputStream; -import java.io.OutputStream; -import java.nio.file.CopyOption; -import java.nio.file.Files; -import java.nio.file.StandardCopyOption; -import java.util.ArrayList; -import java.util.HashSet; -import java.util.Map; -import java.util.Set; - -import org.eclipse.core.resources.IProject; -import org.eclipse.core.resources.IProjectDescription; -import org.eclipse.core.resources.ResourcesPlugin; -import org.eclipse.core.runtime.NullProgressMonitor; -import org.eclipse.core.runtime.Path; -import org.eclipse.emf.common.util.BasicEList; -import org.eclipse.emf.common.util.EList; -import org.eclipse.emf.common.util.URI; -import org.eclipse.emf.ecore.EObject; -import org.eclipse.emf.ecore.EPackage.Registry; -import org.eclipse.emf.ecore.resource.Resource; -import org.eclipse.emf.ecore.resource.ResourceSet; -import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl; -import org.eclipse.emf.ecore.util.EcoreUtil; -import org.eclipse.emf.ecore.util.EcoreUtil.Copier; -import org.eclipse.emf.ecore.xmi.impl.XMIResourceFactoryImpl; -import org.eclipse.equinox.app.IApplication; -import org.eclipse.equinox.app.IApplicationContext; -import org.eclipse.gmt.modisco.java.AbstractTypeDeclaration; -import org.eclipse.gmt.modisco.java.BodyDeclaration; -import org.eclipse.gmt.modisco.java.ClassDeclaration; -import org.eclipse.gmt.modisco.java.CompilationUnit; -import org.eclipse.gmt.modisco.java.ConstructorDeclaration; -import org.eclipse.gmt.modisco.java.ExpressionStatement; -import org.eclipse.gmt.modisco.java.FieldDeclaration; -import org.eclipse.gmt.modisco.java.InterfaceDeclaration; -import org.eclipse.gmt.modisco.java.MethodDeclaration; -import org.eclipse.gmt.modisco.java.MethodInvocation; -import org.eclipse.gmt.modisco.java.Model; -import org.eclipse.gmt.modisco.java.Modifier; -import org.eclipse.gmt.modisco.java.ReturnStatement; -import org.eclipse.gmt.modisco.java.SingleVariableAccess; -import org.eclipse.gmt.modisco.java.Statement; -import org.eclipse.gmt.modisco.java.StringLiteral; -import org.eclipse.gmt.modisco.java.TypeAccess; -import org.eclipse.gmt.modisco.java.VariableDeclaration; -import org.eclipse.gmt.modisco.java.VariableDeclarationFragment; -import org.eclipse.gmt.modisco.java.VisibilityKind; -import org.eclipse.gmt.modisco.java.emf.JavaFactory; -import org.eclipse.gmt.modisco.java.generation.files.GenerateJavaExtended; -import org.eclipse.jdt.core.IJavaProject; -import org.eclipse.jdt.core.JavaCore; -import org.eclipse.modisco.java.discoverer.DiscoverJavaModelFromJavaProject; - -//import org.eclipse.gmt.modisco.java.; -/** - * This class controls all aspects of the application's execution - */ -public class Application implements IApplication { - - - /** - * To decide whether a property is mutable or not. - * Only relies on its name, which should end with "_m" or "_M_EDEFAULT" for default values. - * @param variable The variable to analyse - * @return True if mutable, false otherwise. - */ - private static boolean isMutable(VariableDeclarationFragment variable) { - return variable.getName().endsWith("_m") || variable.getName().endsWith("_M_EDEFAULT"); - } - - - /** - * Helper method that allows one to find the method that contain some model element. - * @param o The model element. - * @return The method containing the model element. - */ - private static MethodDeclaration getContainingMethod(EObject o) { - if (o.eContainer() != null) { - if (o.eContainer() instanceof MethodDeclaration) - return (MethodDeclaration) o.eContainer(); - else - return getContainingMethod(o.eContainer()); - } else { - return null; - } - } - - - /** - * Helper method to create "System.err.println(message)" calls in the code. - * Creates a fake System class, a fake err static property, and a fake printlnt method. - * Then creates the call itself and return it. - * @param message The message that should be printed by the call. - * @return The method call. - */ - private ExpressionStatement createPrintErr(String message) { - - // Preparing the factory - JavaFactory javaFactory = (JavaFactory) Registry.INSTANCE - .getEFactory("http://www.eclipse.org/MoDisco/Java/0.2.incubation/java"); - - // Fake "err" static field of System - FieldDeclaration errField = javaFactory.createFieldDeclaration(); - Modifier errModifier = javaFactory.createModifier(); - errModifier.setStatic(true); - errField.setModifier(errModifier); - VariableDeclarationFragment err = javaFactory.createVariableDeclarationFragment(); - err.setName("err"); - errField.getFragments().add(err); - - // Fake println method - MethodDeclaration println = javaFactory.createMethodDeclaration(); - println.setName("println"); - - // Argument for the call, which is the message - StringLiteral arg = javaFactory.createStringLiteral(); - arg.setEscapedValue("\"" + message + "\""); - - // Fake System class - ClassDeclaration system = javaFactory.createClassDeclaration(); - system.setName("System"); - system.getBodyDeclarations().add(println); - system.getBodyDeclarations().add(errField); - - // To access to the system class - TypeAccess systemAccess = javaFactory.createTypeAccess(); - systemAccess.setType(system); - - // To access to the "err" field - SingleVariableAccess erraccess = javaFactory.createSingleVariableAccess(); - erraccess.setVariable(err); - erraccess.setQualifier(systemAccess); - - // Invocation of the fake println method - MethodInvocation printlncall = javaFactory.createMethodInvocation(); - printlncall.setMethod(println); - printlncall.setExpression(erraccess); - printlncall.getArguments().add(arg); - - // Finally creating the expression result, containing the invocation of println - ExpressionStatement result = javaFactory.createExpressionStatement(); - result.setExpression(printlncall); - - // And returning it - return result; - } - - - /** - * Helper method to find the getter of some property in the original model. - * For instance: in APImpl the attribute a would return the getA() method of AImpl. - * @param variable The property for which we need the original getter. - * @param copier The copier that produced the java model clone. - * @return - */ - private MethodDeclaration findGetterInImpl(VariableDeclarationFragment variable, EcoreUtil.Copier copier) { - - VariableDeclarationFragment realvariable = (VariableDeclarationFragment) copier.get(variable); - - for (SingleVariableAccess access : realvariable.getUsageInVariableAccess()) { - if (access.eContainer() instanceof ReturnStatement) { - ReturnStatement ret = (ReturnStatement) access.eContainer(); - if (ret.eContainer().eContainer() instanceof MethodDeclaration) { - MethodDeclaration potentialGetter = (MethodDeclaration) ret.eContainer().eContainer(); - if (potentialGetter.getName().startsWith("get")) - return potentialGetter; - } - - } - } - - return null; - - } - - /** - * Main transformation method. - * - * @param classd_M_EDEFAULT - * @param copier - */ - private void processClass(ClassDeclaration classd, Copier copier) { - - // Logging - System.out.println(classd.getOriginalCompilationUnit().getOriginalFilePath() + "##" + classd.getName()); - - // Renaming the class - String originalName = classd.getName(); - classd.setName(classd.getName().substring(0, classd.getName().length() - 4) + "PClone"); - classd.getOriginalCompilationUnit().setName(classd.getName() + ".java"); - - // Preparing the factory - JavaFactory javaFactory = (JavaFactory) Registry.INSTANCE - .getEFactory("http://www.eclipse.org/MoDisco/Java/0.2.incubation/java"); - - // Creating the "cloned" field... - // Added later to the class - // Maybe we should find the type in the original model ? - - FieldDeclaration clonedField = javaFactory.createFieldDeclaration(); - - // We construct an access to the "XImpl" type - TypeAccess clonedFieldTypeaccess = javaFactory.createTypeAccess(); - InterfaceDeclaration interfaced = (InterfaceDeclaration) classd.getSuperInterfaces().get(0).getType(); - clonedFieldTypeaccess.setType(interfaced); - - VariableDeclarationFragment clonedVar = javaFactory.createVariableDeclarationFragment(); - clonedVar.setName("cloned"); - clonedVar.setExtraArrayDimensions(0); - clonedVar.setProxy(false); - clonedVar.setVariablesContainer(clonedField); - clonedVar.setOriginalCompilationUnit(classd.getOriginalCompilationUnit()); - - Modifier clonedFieldModifier = javaFactory.createModifier(); - clonedFieldModifier.setStatic(false); - clonedFieldModifier.setVisibility(VisibilityKind.PROTECTED); - - clonedField.setType(clonedFieldTypeaccess); - clonedField.setModifier(clonedFieldModifier); - - // Preparing a set of the body declarations to remove - Set emptyBodies = new HashSet(); - - // First pass: analysis and processing the fields - for (BodyDeclaration bodyd : classd.getBodyDeclarations()) { - - // If it is a field - if (bodyd instanceof FieldDeclaration) { - FieldDeclaration fieldd = (FieldDeclaration) bodyd; - - // If it is not static - if (!fieldd.getModifier().isStatic()) { - - // We prepare the set of mutable variables (to remove - // eventually) - Set localReadonlys = new HashSet(); - // And we iterate through the variables - for (VariableDeclarationFragment variabled : fieldd.getFragments()) { - - - //TODO Case readonly "reference to a mutable class" !!! - // Relire KMF stuff ? - - - // If it is readonly - if (!isMutable(variabled)) { - System.out.println("Found readonly attribute! " + variabled.getName()); - - // We will remove it eventually - localReadonlys.add(variabled); - - // We iterate through its usages - for (SingleVariableAccess access : variabled.getUsageInVariableAccess()) { - - // Getting the method that contains this write - MethodDeclaration containingMethod = getContainingMethod(access); - - if (containingMethod != null) { - - // case WRITE (setters) - if (containingMethod.getName().startsWith("basicSet") - || containingMethod.getName().startsWith("set")) { - - System.out.println("WRITE"); - - // If we are, we clear its content - containingMethod.getBody().getStatements().clear(); - // and we replace it with some error printing - ExpressionStatement printExpr = createPrintErr(classd.getName() + ": " - + variabled.getName() + " is readonly and cannot be set."); - printExpr.setOriginalCompilationUnit(classd.getOriginalCompilationUnit()); - containingMethod.getBody().getStatements().add(printExpr); - - // If in a basicSet, we have to return the NotificationChain - if (containingMethod.getName().startsWith("basicSet")) { - - SingleVariableAccess parameterAccess = javaFactory - .createSingleVariableAccess(); - parameterAccess.setVariable(containingMethod.getParameters().get(1)); - - ReturnStatement ret = javaFactory.createReturnStatement(); - ret.setExpression(parameterAccess); - - containingMethod.getBody().getStatements().add(ret); - - } - - } - - // case READ - else { - - System.out.println("READ"); - - if (containingMethod != null) { - - // If we are in a getter, we remove everything except the return - // (i.e. we remove everything proxy related) - if (containingMethod.getName().startsWith("basicGet") - || containingMethod.getName().startsWith("get")) { - EList statements = new BasicEList(); - statements.addAll(containingMethod.getBody().getStatements()); - for (Statement s : statements) - if (!(s instanceof ReturnStatement)) - containingMethod.getBody().getStatements().remove(s); - } - - MethodDeclaration getter = findGetterInImpl(variabled, copier); - - if (getter != null) { - - // Creating the access to the cloned variable - SingleVariableAccess clonedAccess = javaFactory - .createSingleVariableAccess(); - clonedAccess.setVariable(clonedVar); - - // Creating the call to the getter - MethodInvocation getCall = javaFactory.createMethodInvocation(); - getCall.setMethod(getter); - getCall.setExpression(clonedAccess); - - // Two cases : contained in a collection or not - // In both, we replace the access by cloned.get - if (access.eContainmentFeature().isMany()) { - EList list = (EList) access.eContainer().eGet( - access.eContainmentFeature()); - list.set(list.indexOf(access), getCall); - } else { - access.eContainer().eSet(access.eContainmentFeature(), getCall); - } - - } - - } - - } - - } - - } - } - - } - // We remove from the field the readonly variables - fieldd.getFragments().removeAll(localReadonlys); - // If the field is empty, it must be removed eventually - if (fieldd.getFragments().isEmpty()) - emptyBodies.add(fieldd); - - } - } - // Changing constructor - // TODO parameter + body - if (bodyd instanceof ConstructorDeclaration) { - ConstructorDeclaration constructor = (ConstructorDeclaration) bodyd; - constructor.setName(classd.getName()); - } - } - - // We remove empty fields - classd.getBodyDeclarations().removeAll(emptyBodies); - - // Adding cloned field, at last (otherwise it is treated as a RO - // variable etc.) - classd.getBodyDeclarations().add(0, clonedField); - - // TODO a protected "getCloned" with proxy resolve ? - - - } - - - - - - - public Model transform2PImpl(Model javaModel) { - - - - // Copying the obtained model in order to refer to elements of the original one - EcoreUtil.Copier copier = new EcoreUtil.Copier(); - Model originalJavaModel = (Model) copier.copy(javaModel); - copier.copyReferences(); - - // Preparing the set of already visited packages - Set packages = new HashSet(); - - // Preparing the set of compilation units to remove (ie. those not modified) - Set cuToRemove = new HashSet(); - - // Then we iterate over compilation units (~ files) - for (CompilationUnit c : javaModel.getCompilationUnits()) { - // Goes to false if the cu is an implementation of our interest - boolean toRemove = true; - // We look for files with "impl" - if (c.getName().contains("Impl")) { - // In which there are classes - for (AbstractTypeDeclaration type : c.getTypes()) { - if (type instanceof ClassDeclaration) { - ClassDeclaration classd = (ClassDeclaration) type; - if (classd.getSuperClass() instanceof TypeAccess) { - TypeAccess superClass = (TypeAccess) classd.getSuperClass(); - // If the class extends our custom class "PotentiallyReadonlyEObject", it means its - // the implementation class of some metaclass - if (superClass.getType().getName().equals("PotentiallyReadonlyEObject")) { - // Thus we keep it - toRemove = false; - // We process its package (if not done already) - if (!packages.contains(classd.getPackage())) { - packages.add(classd.getPackage()); - classd.getPackage().setName("pclone"); - } - // And we process the class - processClass(classd, copier); - } - - } - } - - } - } - // If we did not find the class in the compilation unit, we can remove it (later) - if (toRemove) - cuToRemove.add(c); - - } - - - // Removing non modified compilations units - javaModel.getCompilationUnits().removeAll(cuToRemove); - - return javaModel; - - } - - - - - - - - - - /* - * - * - * (non-Javadoc) - * - * @see org.eclipse.equinox.app.IApplication#start(org.eclipse.equinox.app. IApplicationContext) - */ - public Object start(IApplicationContext context) throws Exception { - System.out.println("Starting EMFImpl2PClone"); - - - - // Creating a "fake" java project from a real existing eclipse java - // project on the filesystem - IProjectDescription description = ResourcesPlugin.getWorkspace().loadProjectDescription( - new Path("/home/ebousse/Dev/modelCloning/emf/SomeMetamodel/.project")); - IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(description.getName()); - project.delete(false, true, null); - project.create(description, null); - project.open(null); - IJavaProject javaProject = JavaCore.create(project); - - // Discovering the model from the project - DiscoverJavaModelFromJavaProject discoverer = new DiscoverJavaModelFromJavaProject(); - discoverer.discoverElement(javaProject, new NullProgressMonitor()); - - // Accessing the obtained model - Resource result = discoverer.getTargetModel(); - Model javaModel = (Model) result.getContents().get(0); - - transform2PImpl(javaModel); - - - // Generating the code from the obtained model - GenerateJavaExtended javaGenerator = new GenerateJavaExtended(javaModel, new File( - "/home/ebousse/Dev/modelCloning/emf/SomeMetamodel/src"), new ArrayList()); - javaGenerator.doGenerate(null); - - // Done ! - System.out.println("Done !"); - return IApplication.EXIT_OK; - } - - /* - * (non-Javadoc) - * - * @see org.eclipse.equinox.app.IApplication#stop() - */ - public void stop() { - // nothing to do - } -} diff --git a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/tagger/AbstractMetamodelTagger.java b/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/tagger/AbstractMetamodelTagger.java deleted file mode 100644 index f72410acbf2f980066135f0c6e685725078a9457..0000000000000000000000000000000000000000 --- a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/tagger/AbstractMetamodelTagger.java +++ /dev/null @@ -1,135 +0,0 @@ -package fr.diverse.fancyemfcloning.tagger; - -import java.util.HashMap; -import java.util.Iterator; -import java.util.Map; -import java.util.Set; - -import org.eclipse.emf.ecore.EClass; -import org.eclipse.emf.ecore.EObject; -import org.eclipse.emf.ecore.EStructuralFeature; -import org.eclipse.emf.ecore.resource.Resource; - -public abstract class AbstractMetamodelTagger { - - /** - * Final result of the algorithm, with a tag for each class concerning its - * "mutability". - */ - protected Map tags; - - public AbstractMetamodelTagger(Set metamodel) { - tags = new HashMap(); - // Finding all classes of the metamodel - for (Resource resource : metamodel) - for (Iterator i = resource.getAllContents(); i.hasNext();) { - EObject current = i.next(); - if (current instanceof EClass) - tags.put((EClass) current,null); - } - recomputeTags(); - } - - - - protected boolean isMutable(EClass c) { - return (tags.get(c) == ClassTag.completelyMutable) - || (tags.get(c) == ClassTag.partiallyMutable) - || (tags.get(c) == ClassTag.canReachMutable); - } - - protected static boolean isPropertyMutable(EStructuralFeature f) { - return f.getName().contains("_m"); - } - - /*protected static Set findAllLoadedClasses() { - Set allLoadedEClasses = new HashSet(); - for (Object o : EPackage.Registry.INSTANCE.values()) { - EPackage p = (EPackage) o; - if (p.getNsURI() != "http://www.eclipse.org/emf/2002/Ecore") { - for (EClassifier c : p.getEClassifiers()) { - if (c instanceof EClass) - allLoadedEClasses.add((EClass) c); - } - } - } - return allLoadedEClasses; - }*/ - - /** - * Without looking to the classes that can be reached from a class, - * determine how mutable it is (locally). - * - * @param c - * The class to analyze. - * @return ClassMutability.partiallyMutableOrCanReachMutable if the class - * has both mutable and readonly properties, - * ClassMutability.completelyMutable if the class only has mutable - * properties, ClassMutability.completelyReadonly if the class only - * has readonly properties. - */ - protected static ClassTag findLocalMutability(EClass c) { - boolean hasMutables = false; - boolean hasReadonlys = false; - for (EStructuralFeature f : c.getEAllStructuralFeatures()) { - if (isPropertyMutable(f)) - hasMutables = true; - else - hasReadonlys = true; - } - if (hasMutables && hasReadonlys) - return ClassTag.partiallyMutable; - else if (hasMutables && !hasReadonlys) - return ClassTag.completelyMutable; - else - // only readonlys OR no properties at all - return ClassTag.completelyReadonly; - } - - /* - * protected static Set> findAllLoadedMetamodels() { - * Set> result = new HashSet>(); - * - * // For each loaded epackage (excepted ecore itself) for (Object o : - * EPackage.Registry.INSTANCE.values()) { EPackage p = (EPackage)o; if - * (p.getNsURI()!="http://www.eclipse.org/emf/2002/Ecore") { - * - * - * // We find or create the metamodel for this package Set - * pMetamodel = null; for (Set metamodel : result) { if - * (metamodel.contains(p.eResource())) { pMetamodel = metamodel; break; } } - * if (pMetamodel == null){ pMetamodel = new HashSet(); - * pMetamodel.add(p.eResource()); result.add(pMetamodel); } - * - * - * - * // We look at the content (classes) for(EClassifier c : - * p.getEClassifiers()) { if (c instanceof EClass) { // For each class, we - * check that it does try to access to another resource // If it does, we - * add the resource of the class to the metamodel for (EReference r : - * ((EClass)c).getEAllReferences()) { - * pMetamodel.add(r.getEReferenceType().eResource()); } } } } } - * - * System.out.println("Found metamodels"); return result; } - */ - - public ClassTag getTagOfEClass(EClass c) { - if (tags.containsKey(c)) { - if (tags.get(c)==null) - System.out.println("The class " + c.getName() - + " has no tag! Tagging problem?"); - return tags.get(c); - } - else { - System.out.println("The class " + c.getName() - + " is not in the registered metamodel of the cloner!"); - return null; - } - - } - - public abstract void recomputeTags(); - - public abstract boolean mayTagClassesReadonly(); - -} \ No newline at end of file diff --git a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/tagger/ClassTag.java b/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/tagger/ClassTag.java deleted file mode 100644 index aff1a2a4c311d8b1fb82cbfeb7e31b169489fef6..0000000000000000000000000000000000000000 --- a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/tagger/ClassTag.java +++ /dev/null @@ -1,16 +0,0 @@ -package fr.diverse.fancyemfcloning.tagger; - -/** - * From a cloning kind point of view a class is either - * - completely readonly (no property change change), thus no need to clone it - * - completely mutable (all properties can change), thus must be cloned completely - * - partially mutable (some properties can change) OR can reach a mutable , thus can be cloned partially or completely - * @author ebousse - * - */ -public enum ClassTag { - completelyReadonly, - completelyMutable, - partiallyMutable, - canReachMutable, -} \ No newline at end of file diff --git a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/tagger/MutClassesOnlyMetamodelTagger.java b/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/tagger/MutClassesOnlyMetamodelTagger.java deleted file mode 100644 index f680bfce546aa4017c388715d789d9be77c76ee4..0000000000000000000000000000000000000000 --- a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/tagger/MutClassesOnlyMetamodelTagger.java +++ /dev/null @@ -1,193 +0,0 @@ -package fr.diverse.fancyemfcloning.tagger; - -import java.util.HashMap; -import java.util.HashSet; -import java.util.Map; -import java.util.Set; -import java.util.Stack; - -import org.eclipse.emf.ecore.EClass; -import org.eclipse.emf.ecore.EReference; -import org.eclipse.emf.ecore.resource.Resource; - -/** - * This static class allows to tag all the EClasses of a metamodel in order to determine how it can eventaully be - * cloned, for a normal MutableClassesOnly clone. - * - * @author ebousse - * - */ -public class MutClassesOnlyMetamodelTagger extends AbstractMetamodelTagger { - - public MutClassesOnlyMetamodelTagger(Set metamodel) { - super(metamodel); - } - - /** - * Very simple class used to model sccs, for clarity. - * - * @author ebousse - * - */ - private class StronglyConnectedComponent { - private Set classes; - - public StronglyConnectedComponent() { - classes = new HashSet(); - } - } - - // Tarjan variables - private Map tarjanIndexes; - private Map tarjanLowlinks; - private Stack tarjanS; - private int tarjanIndex; - private Set tarjanResult; - - /** - * From https://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorith Main operation that - * implements the main operation of the tarjan algorithm. Computes StronglyConnectedComponents, and tags classes in - * each as soon as they are computed. - * - * Note : should we provide a quicker algorithm for tree-shaped metamodels ? - * - * @param vertices - * the EClasses to consider - */ - private void tarjanWithTagging(Set vertices) { - tarjanIndexes = new HashMap(); - tarjanLowlinks = new HashMap(); - tarjanS = new Stack(); - tarjanIndex = 0; - tarjanResult = new HashSet(); - for (EClass v : vertices) { - if (!tarjanIndexes.containsKey(v)) { - tarjanWithTaggingOnVertex(v); - } - } - } - - /** - * Main code of the tarjan algorithm. - * - * @param v - */ - private void tarjanWithTaggingOnVertex(EClass v) { - // Set the depth index for v to the smallest unused index - tarjanIndexes.put(v, tarjanIndex); - tarjanLowlinks.put(v, tarjanIndex); - tarjanIndex = tarjanIndex + 1; - tarjanS.push(v); - - // Computing successors - Set successors = new HashSet(); - for (EReference ref : v.getEAllReferences()) - successors.add(ref.getEReferenceType()); - - // Consider successors of v - for (EClass w : successors) { - if (!tarjanIndexes.containsKey(w)) { - // Successor w has not yet been visited; recurse on it - tarjanWithTaggingOnVertex(w); - tarjanLowlinks.put(v, Math.min(tarjanLowlinks.get(v), tarjanLowlinks.get(w))); - } else if (tarjanS.contains(w)) { - // Successor w is in stack S and hence in the current SCC - tarjanLowlinks.put(v, Math.min(tarjanLowlinks.get(v), tarjanIndexes.get(w))); - } - } - - // If v is a root node, pop the stack and generate an SCC - if (tarjanLowlinks.get(v) == tarjanIndexes.get(v)) { - StronglyConnectedComponent scc = new StronglyConnectedComponent(); - EClass w; - do { - w = tarjanS.pop(); - scc.classes.add(w); - } while (w != v); - - // BONUS (only part not in Tarjan): computing tags - // Possible because Tarjan guarantees that - // "no strongly connected component will be identified before any of its successors." - computeMutabilityOfScc(scc); - // End BONUS - - tarjanResult.add(scc); - } - } - - /** - * To me used as soon as some SCC is found by the Tarjan algorithm. Will iterate over all classes of the SCC, and - * tags them for mutability. - * - * @param scc - * A StronglyConnectedComponent freshly computed in Tarjan. - */ - private void computeMutabilityOfScc(StronglyConnectedComponent scc) { - Set roWaitingForResult = new HashSet(); - // Do we know yet if we can reach a mutable somewhere from th scc ? - boolean hasReachableMutable = false; - // We look at all classes if the scc - for (EClass c : scc.classes) { - - // First, if still no mutable found, we look for outgoing edges of the scc - if (!hasReachableMutable) { - for (EReference ref : c.getEAllReferences()) { - EClass reachableClass = ref.getEReferenceType(); - // If the reached class is not from the current scc AND - // is mutable, then our scc can reach a mutable - if (!scc.classes.contains(reachableClass)) - hasReachableMutable = isMutable(reachableClass); - // If we found that we reach a mutable, no need to - // search more - if (hasReachableMutable) - break; - } - - } - - // Then we compute locally what we can - ClassTag localMut = findLocalMutability(c); - switch (localMut) { - case partiallyMutable: - hasReachableMutable = true; - tags.put(c, ClassTag.partiallyMutable); - break; - case completelyMutable: - hasReachableMutable = true; - tags.put(c, ClassTag.completelyMutable); - break; - case completelyReadonly: - if (hasReachableMutable) - tags.put(c, ClassTag.canReachMutable); - else - roWaitingForResult.add(c); - break; - } - } - - // And finally we compute the readonlys waiting to know if a mut can - // be reached - for (EClass c : roWaitingForResult) { - if (hasReachableMutable) - tags.put(c, ClassTag.canReachMutable); - else - tags.put(c, ClassTag.completelyReadonly); - } - - } - - @Override - public void recomputeTags() { - tarjanWithTagging(tags.keySet()); - System.out.println("Computed mutabilities"); - for (EClass c : tags.keySet()) { - System.out.println(c.getName() + " : " + tags.get(c)); - } - } - - @Override - public boolean mayTagClassesReadonly() { - return true; - } - -} diff --git a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/tagger/WeakMutClassesOnlyMetamodelTagger.java b/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/tagger/WeakMutClassesOnlyMetamodelTagger.java deleted file mode 100644 index 290fbe50ac410b6426de0fd75d222a613cd67bcf..0000000000000000000000000000000000000000 --- a/CloningMaterialGenerator/src/fr/diverse/fancyemfcloning/tagger/WeakMutClassesOnlyMetamodelTagger.java +++ /dev/null @@ -1,123 +0,0 @@ -package fr.diverse.fancyemfcloning.tagger; - -import java.util.HashSet; -import java.util.Set; - -import org.eclipse.emf.ecore.EClass; -import org.eclipse.emf.ecore.EReference; -import org.eclipse.emf.ecore.resource.Resource; - -public class WeakMutClassesOnlyMetamodelTagger extends AbstractMetamodelTagger { - - public WeakMutClassesOnlyMetamodelTagger(Set metamodel) { - super(metamodel); - } - - public static class NoSingleRootException extends Exception { - private static final long serialVersionUID = 1L; - private Set roots; - - public NoSingleRootException(Set foundRoots) { - roots = new HashSet(); - roots.addAll(foundRoots); - } - - @Override - public String getMessage() { - String message = "A single root is required. Roots found: "; - for (EClass aClass : roots) - message += aClass.getName() + ", "; - return message.substring(0, message.length() - 2) + "\n" + super.getMessage(); - } - - } - - private EClass findRoot() throws NoSingleRootException { - - // Preparing result set - Set roots = new HashSet(); - - // Finding all contained classes - Set containedClasses = new HashSet(); - for (EClass aClass : tags.keySet()) - for (EReference r : aClass.getEAllContainments()) - (containedClasses).add(r.getEReferenceType()); - - // Finding root classes, ie not contained classes - for (EClass aClass : tags.keySet()) - if (!containedClasses.contains(aClass)) - roots.add(aClass); - - // If there are multiple roots, then we have a problem - if (roots.size() != 1) - throw new NoSingleRootException(roots); - - return roots.iterator().next(); - } - - /** - * Tags a containment tree of EClasses. - * - * @param root - * The root EClass of the containment tree. - * @return True if this (sub)tree has a mutable. Required for the recursive calls. - * @throws NoSingleRootException - */ - private boolean treeTagging(EClass root) throws NoSingleRootException { - - // Is this class mutable or can reach a mutable through containment ? - // At first, false - boolean hasMutable = false; - - // We first make recursive calls looking for mutables at lower levels - // If some contained classes are mutable, we change hasMutable - for (EReference cont : root.getEAllContainments()) { - hasMutable = hasMutable || treeTagging(cont.getEReferenceType()); - } - - // Then depending on the local attributes, we tag the current class - ClassTag localMut = findLocalMutability(root); - switch (localMut) { - case partiallyMutable: - hasMutable = true; - tags.put(root, ClassTag.partiallyMutable); - break; - case completelyMutable: - hasMutable = true; - tags.put(root, ClassTag.completelyMutable); - break; - case completelyReadonly: - if (hasMutable) - tags.put(root, ClassTag.canReachMutable); - else - tags.put(root, ClassTag.completelyReadonly); - break; - } - - // And we return true if the class is considered mutable - return hasMutable; - } - - @Override - public void recomputeTags() { - try { - treeTagging(findRoot()); - } catch (NoSingleRootException e) { - System.out.println(e.getMessage()); - System.out.println("No tagging possible for WeakMutClassesOnlyMetamodelTagger."); - } - System.out.println("Computed mutabilities:"); - if (tags.size() == 0) - System.out.println("No mutable class!"); - for (EClass c : tags.keySet()) { - System.out.println(c.getName() + " : " + tags.get(c)); - } - } - - @Override - public boolean mayTagClassesReadonly() { - // TODO Stub de la méthode généré automatiquement - return true; - } - -} diff --git a/External Plug-in Libraries/.searchable b/External Plug-in Libraries/.searchable index 70ce571f127e2c46e7052d31a47828e8315883b0..33707018abf9050c86a7d5cea807cb0e88f30878 100644 --- a/External Plug-in Libraries/.searchable +++ b/External Plug-in Libraries/.searchable @@ -1,3 +1,3 @@ # -#Wed Mar 05 19:16:29 CET 2014 +#Mon Mar 10 00:11:51 CET 2014 searchablePlugins=org.eclipse.emf.importer,org.eclipse.emf.importer.ecore,org.eclipse.pde.ui diff --git a/FancyEMFCloning/src/fr/diverse/fancyemfcloning/cloner/Cloner.java b/FancyEMFCloning/src/fr/diverse/fancyemfcloning/cloner/Cloner.java deleted file mode 100644 index cb146ba2735adbf1688d1f49180608452bc2974b..0000000000000000000000000000000000000000 --- a/FancyEMFCloning/src/fr/diverse/fancyemfcloning/cloner/Cloner.java +++ /dev/null @@ -1,30 +0,0 @@ -package fr.diverse.fancyemfcloning.cloner; - -import org.eclipse.emf.ecore.EClass; -import org.eclipse.emf.ecore.resource.ResourceSet; - -import fr.diverse.fancyemfcloning.customemf.ClassTag; - - -/** - * Defines a class in which a cloning technique is implemented. - * @author ebousse - * - */ -public interface Cloner { - - /** - * Considering a model stored in a ResourceSet, computes a clone of the model. - * @param model The model to clone. - * @param folder The folder in which to store the model to clone (at least in its URI). - * @return The cloned model. - */ - public ResourceSet clone(ResourceSet model, String folder); - - public ClassTag getTagOf(EClass eClass); - - //public ClassTag getTagOf(EClass c); - - - -} diff --git a/FancyEMFCloning/src/fr/diverse/fancyemfcloning/cloner/impl/ClonerImpl.java b/FancyEMFCloning/src/fr/diverse/fancyemfcloning/cloner/impl/ClonerImpl.java deleted file mode 100644 index e21821edc108b94d2ee856acb0b95e84835827fd..0000000000000000000000000000000000000000 --- a/FancyEMFCloning/src/fr/diverse/fancyemfcloning/cloner/impl/ClonerImpl.java +++ /dev/null @@ -1,90 +0,0 @@ -package fr.diverse.fancyemfcloning.cloner.impl; - -import java.util.Iterator; - -import org.eclipse.emf.common.util.URI; -import org.eclipse.emf.ecore.EClass; -import org.eclipse.emf.ecore.EObject; -import org.eclipse.emf.ecore.resource.Resource; -import org.eclipse.emf.ecore.resource.ResourceSet; -import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl; -import org.eclipse.emf.ecore.util.EcoreUtil; - -import fr.diverse.fancyemfcloning.cloner.Cloner; -import fr.diverse.fancyemfcloning.customemf.ClassTag; -import fr.diverse.fancyemfcloning.customemf.impl.LooseCopier; -import fr.diverse.fancyemfcloning.customemf.impl.LooseResource; -import fr.diverse.fancyemfcloning.tagger.AbstractMetamodelTagger; - -/** - * Self containing class with the cloning algorithm. - * - * @author ebousse - * - */ -public class ClonerImpl implements Cloner { - - protected AbstractMetamodelTagger tagger; - - public ClonerImpl(AbstractMetamodelTagger tagger) { - this.tagger = tagger; - } - - @Override - public ResourceSet clone(ResourceSet cloned, String folder) { - - // Creating empty clone resource set - ResourceSet clone = new ResourceSetImpl(); - - // Preparing the copier, which will allow us to copy objects in new - // resources AND to resolve the references in the clone (even between resources) - EcoreUtil.Copier copier = new LooseCopier();// new EcoreUtil.Copier(); - - // Cloning all resources - for (Resource r : cloned.getResources()) { - - // Getting the complete file name - String filename = r.getURI().segmentsList().get(r.getURI().segmentsList().size() - 1); - - // Preparing the URI of the new resource (with a specific 'folder') - URI uri = r.getURI().trimSegments(1).appendSegment(folder).appendSegment(filename); - - // Creating the new Resource... - Resource resourceClone = null; - - // LooseResource if objects might be shared - if (tagger.mayTagClassesReadonly()) { - resourceClone = new LooseResource(this); - resourceClone.setURI(uri); - clone.getResources().add(resourceClone); - } - // Or regular Resource, if not - else - resourceClone = clone.createResource(uri); - - // Copying objects (but not the references, and only tagged mutable ones) - for (Iterator i = r.getAllContents(); i.hasNext();) { - EObject o = i.next(); - ClassTag tag = tagger.getTagOfEClass(o.eClass()); - if (tag == ClassTag.canReachMutable || tag == ClassTag.completelyMutable - || tag == ClassTag.partiallyMutable) { - resourceClone.getContents().add(copier.copy(o)); - } else { - resourceClone.getContents().add(o); - } - } - } - - // Resolving references (all of them, even between resources of the clone and - // between the clone and the cloned) - copier.copyReferences(); - - // Returning the obtained clone - return clone; - } - - @Override - public ClassTag getTagOf(EClass eClass) { - return tagger.getTagOfEClass(eClass); - } -} \ No newline at end of file diff --git a/FancyEMFCloning/src/fr/diverse/fancyemfcloning/cloner/impl/MutClassesOnlyCloner.java b/FancyEMFCloning/src/fr/diverse/fancyemfcloning/cloner/impl/MutClassesOnlyCloner.java deleted file mode 100644 index 05a96f5d75ce1ee07ec4612d3ef203404834d7d9..0000000000000000000000000000000000000000 --- a/FancyEMFCloning/src/fr/diverse/fancyemfcloning/cloner/impl/MutClassesOnlyCloner.java +++ /dev/null @@ -1,82 +0,0 @@ -package fr.diverse.fancyemfcloning.cloner.impl; - -import java.util.Iterator; -import java.util.Set; - -import org.eclipse.emf.common.util.URI; -import org.eclipse.emf.ecore.EClass; -import org.eclipse.emf.ecore.EObject; -import org.eclipse.emf.ecore.resource.Resource; -import org.eclipse.emf.ecore.resource.ResourceSet; -import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl; -import org.eclipse.emf.ecore.util.EcoreUtil; - -import fr.diverse.fancyemfcloning.cloner.Cloner; -import fr.diverse.fancyemfcloning.customemf.ClassTag; -import fr.diverse.fancyemfcloning.customemf.impl.LooseCopier; -import fr.diverse.fancyemfcloning.customemf.impl.LooseResource; -import fr.diverse.fancyemfcloning.tagger.AbstractMetamodelTagger; -import fr.diverse.fancyemfcloning.tagger.MutClassesOnlyMetamodelTagger; - -public class MutClassesOnlyCloner implements Cloner { - - protected AbstractMetamodelTagger tagger; - - protected MutClassesOnlyCloner() { - } - - public MutClassesOnlyCloner(Set metamodel) { - this(); - this.tagger = new MutClassesOnlyMetamodelTagger(metamodel); - } - - @Override - public ResourceSet clone(ResourceSet cloned, String folder) { - - // Creating empty clone resource set - ResourceSet clone = new ResourceSetImpl(); - - // Preparing the copier, which will allow us to copy objects in new - // resources - // AND to resolve the references in the clone (even between resources) - EcoreUtil.Copier copier = new LooseCopier();// new EcoreUtil.Copier(); - - // Cloning all resources - for (Resource r : cloned.getResources()) { - // Getting the complete file name - String filename = r.getURI().segmentsList().get(r.getURI().segmentsList().size() - 1); - // Preparing the URI of the new resource (with a specific 'folder') - URI uri = r.getURI().trimSegments(1).appendSegment(folder).appendSegment(filename); - // Creating the new Resource (Loose, because objects might be - // shared) - Resource resourceClone = new LooseResource(this); - resourceClone.setURI(uri); - clone.getResources().add(resourceClone); - // Copying objects (but not the references, and only mutable ones) - // OLD for (EObject o : r.getContents()) { - for (Iterator i = r.getAllContents(); i.hasNext();) { - EObject o = i.next(); - ClassTag mutability = tagger.getTagOfEClass(o.eClass()); - if (mutability == ClassTag.canReachMutable || mutability == ClassTag.completelyMutable - || mutability == ClassTag.partiallyMutable) { - resourceClone.getContents().add(copier.copy(o)); - } else { - resourceClone.getContents().add(o); - } - - } - } - - // Resolving references (all of them, even between resources of the clone) - copier.copyReferences(); - - // Returning the obtained clone - return clone; - } - - @Override - public ClassTag getTagOf(EClass c) { - return tagger.getTagOfEClass(c); - } - -} diff --git a/FancyEMFCloning/src/fr/diverse/fancyemfcloning/customemf/impl/LooseCopier.java b/FancyEMFCloning/src/fr/diverse/fancyemfcloning/customemf/impl/LooseCopier.java deleted file mode 100644 index 7d95dc14313592a7f3c2b2dff50b8f4d7ab22a0a..0000000000000000000000000000000000000000 --- a/FancyEMFCloning/src/fr/diverse/fancyemfcloning/customemf/impl/LooseCopier.java +++ /dev/null @@ -1,86 +0,0 @@ -package fr.diverse.fancyemfcloning.customemf.impl; - -import java.util.HashSet; -import java.util.Set; - -import org.eclipse.emf.ecore.EObject; -import org.eclipse.emf.ecore.EReference; -import org.eclipse.emf.ecore.util.EcoreUtil.Copier; - -/** - * Customized Copier that will ignore containment relationships and treat them the same way as simple references. - * - * - * @author ebousse - * - */ -public class LooseCopier extends Copier { - - private static final long serialVersionUID = -3587653043296819827L; - - /** - * Temporarly change the EClass of some EObject by setting its containments as simple references. - * - * @param o - * The considered EObject. - * @return The stored context, that is the list of the changed ERefences. - */ - private Set removeContainmentsFromClassOfObject(EObject o) { - Set context = new HashSet(); - for (EReference r : o.eClass().getEAllContainments()) { - context.add(r); - r.setContainment(false); - } - return context; - } - - /** - * Restores the contaiments of some references. - * - * @param context - * The list of references. - */ - private void restoreContainments(Set context) { - for (EReference r : context) - r.setContainment(true); - } - - // ------------------ - - @Override - /* - * (non-Javadoc) - * - * @see org.eclipse.emf.ecore.util.EcoreUtil.Copier#copy(org.eclipse.emf.ecore .EObject) - */ - public EObject copy(EObject eObject) { - // Saving context (ie. what are the containments of the class of the copied objects) - // and changing it (ie. removing all containments) - Set context = removeContainmentsFromClassOfObject(eObject); - - // Calling copier copy code - EObject result = super.copy(eObject); - - // Restoring context - restoreContainments(context); - - // And returning result - return result; - } - - @Override - public void copyReferences() { - // Saving context (ie. what are the containments of the classes of the copied objects of the copied objects) - // and changing it (ie. removing all containments) - Set context = new HashSet(); - for (EObject o : this.keySet()) - context.addAll(removeContainmentsFromClassOfObject(o)); - - // Calling copier copyReferences code - super.copyReferences(); - - // Restoring context - restoreContainments(context); - } - -} diff --git a/FancyEMFCloning/src/fr/diverse/fancyemfcloning/customemf/impl/LooseResource.java b/FancyEMFCloning/src/fr/diverse/fancyemfcloning/customemf/impl/LooseResource.java deleted file mode 100644 index a65d7842184f3693b80f83c4da9489fa65c301fe..0000000000000000000000000000000000000000 --- a/FancyEMFCloning/src/fr/diverse/fancyemfcloning/customemf/impl/LooseResource.java +++ /dev/null @@ -1,172 +0,0 @@ -package fr.diverse.fancyemfcloning.customemf.impl; - -import java.io.IOException; -import java.util.HashMap; -import java.util.Map; - -import org.eclipse.emf.common.notify.NotificationChain; -import org.eclipse.emf.common.util.EList; -import org.eclipse.emf.ecore.EObject; -import org.eclipse.emf.ecore.InternalEObject; -import org.eclipse.emf.ecore.resource.Resource; -import org.eclipse.emf.ecore.xmi.impl.XMIResourceImpl; - -import fr.diverse.fancyemfcloning.cloner.Cloner; -import fr.diverse.fancyemfcloning.customemf.ClassTag; - -public class LooseResource extends XMIResourceImpl { - - /** - * A LooseResource considers readonly classes that a given cloning technique - * consider readonly. Thus it needs to know ther cloner that created it. - */ - private Cloner cloner; - - /** - * The default constructor is private, because such resources can only be - * constructed with a cloner, otherwise invalid. - */ - private LooseResource() {}; - - /** - * Constructs a LooseResource to build a clone made by a specific cloning - * technique. - * - * @param c - * The cloning technique. - */ - public LooseResource(Cloner c) { - this(); - this.cloner = c; - } - - /** - * We might need to know the cloner, in order to know what objects are - * readonly for this resource. - * - * @return - */ - public Cloner getCloner() { - return cloner; - } - - /** - * We have to extend the containment list used by XMIResourceImpl, in order - * to break the containment for readonly objects. - * Note that this hack does not prevent a regular Resource from removing - * - * @author ebousse - * - * @param - */ - protected class LooseContentsEList extends - ContentsEList { - - private static final long serialVersionUID = 1410188721350066354L; - - @Override - public NotificationChain inverseAdd(E object, - NotificationChain notifications) { - InternalEObject eObject = (InternalEObject) object; - // We only allow Readonly (from the cloning technique pov) objects - // to be in multiple resources at once - if (!(LooseResource.this.cloner.getTagOf(eObject.eClass()) == ClassTag.completelyReadonly)) - notifications = eObject.eSetResource(LooseResource.this,notifications); - LooseResource.this.attached(eObject); - return notifications; - } - - @Override - public NotificationChain inverseRemove(E object, - NotificationChain notifications) { - InternalEObject eObject = (InternalEObject) object; - if (LooseResource.this.isLoaded || unloadingContents != null) { - LooseResource.this.detached(eObject); - } - // We only allow Readonly (from the cloning technique pov) objects - // to be in multiple resources at once - if (!(LooseResource.this.cloner.getTagOf(eObject.eClass()) == ClassTag.completelyReadonly)) - return eObject.eSetResource(null, notifications); - else - return notifications; - } - - } - - protected EList realContents; - - @Override - /** - * "Overrides" the 'contents' property of the - * extended class. - */ - public EList getContents() { - if (realContents == null) { - realContents = new LooseContentsEList(); - } - return realContents; - } - - /** - * Change the resource of all "contained" readonly objects, and store their - * real resources - * - * Can maybe be optimized by only looking at objects referenced by this resource. - * - * Could maybe be optimized be looking at all references of the resource - * that go outside the resource (thus into another resource of the resource set) - * Such referenced objects are the only ones that should be contextified. - * @return The context, that is a set of objects and their theoretical resource, in order to restore it later. - */ - private Map changeContext() { - // We prepare a map to store the context - Map context = new HashMap(); - // For each resource of the model - for (Resource otherResource : this.getResourceSet().getResources()) { - // We must only look at LooseResources - if (otherResource instanceof LooseResource) { - // For each of the objects that the resource contains - for (EObject o : otherResource.getContents()) { - // If the object is readonly (and castable (?), we must handle the fact that - // this object does not consider this resource to be its resource - if (o instanceof InternalEObject - && ((((LooseResource)otherResource).cloner.getTagOf(o.eClass()) == ClassTag.completelyReadonly))) { - // Then we store its actual resource - context.put(o, o.eResource()); - // And we change it temporarily - ((PotentiallyReadonlyEObject)o).setResourceNonInverse((Internal)otherResource); - } - } - } - } - // Finally we return the context, in order to restore it later - return context; - } - - /** - * Restores the context previously saved. - * @param context The context, that is a set of objects and their theoretical resource. - */ - private void restoreContext(Map context) { - for (EObject o : context.keySet()) - ((PotentiallyReadonlyEObject)o).setResourceNonInverse((Internal)context.get(o)); - } - - @Override - /** - * Overrides the main save method in order to make the contained - * objects believe that they are in this resource, temporarily. - * TODO other save methods ? - */ - public void save(Map options) throws IOException { - // Save context of all contents - Map context = changeContext(); - - // Do the save - super.save(options); - - // Restore the context of all contents - restoreContext(context); - } - -} diff --git a/FancyEMFCloning/src/fr/diverse/fancyemfcloning/customemf/impl/PotentiallyReadonlyEObject.java b/FancyEMFCloning/src/fr/diverse/fancyemfcloning/customemf/impl/PotentiallyReadonlyEObject.java deleted file mode 100644 index 6c2c0d3371cab94cbd5dbca92ba7d684f572aabc..0000000000000000000000000000000000000000 --- a/FancyEMFCloning/src/fr/diverse/fancyemfcloning/customemf/impl/PotentiallyReadonlyEObject.java +++ /dev/null @@ -1,257 +0,0 @@ -package fr.diverse.fancyemfcloning.customemf.impl; - -import java.util.HashMap; -import java.util.Map; - -import org.eclipse.emf.common.notify.NotificationChain; -import org.eclipse.emf.ecore.InternalEObject; -import org.eclipse.emf.ecore.impl.MinimalEObjectImpl; -import org.eclipse.emf.ecore.resource.Resource; -import org.eclipse.emf.ecore.resource.Resource.Internal; -import org.eclipse.emf.ecore.resource.ResourceSet; - -import fr.diverse.fancyemfcloning.customemf.ClassTag; - -// Default genmodel : org.eclipse.emf.ecore.impl.MinimalEObjectImpl$Container - -/** - * Defines an EMF object that can be contained in multiple objects, as long as - * these objects are in different ResourceSets. Yet, it keeps a single "main" - * container, at all time (eContainer). - * - * @author ebousse - * - */ -public class PotentiallyReadonlyEObject extends MinimalEObjectImpl.Container { - - private class ReadonlyContext { - - // storage place for the main container in the main resourceset - protected InternalEObject storedMainContainer; - - // storage place for the main resource - protected Resource storedResource; - - public ReadonlyContext(PotentiallyReadonlyEObject o) { - this.storedMainContainer = (InternalEObject) o.eContainer(); - this.storedResource = o.eResource(); - } - - public InternalEObject getContainer() { - return storedMainContainer; - } - - public Resource getResource() { - return storedResource; - } - - /*public ResourceSet getResourceSet() { - if (storedResource != null) - return storedResource.getResourceSet(); - else - return null; - }*/ - - } - - /** - * All the containers of the object that are in a clone model. - */ - protected Map additionnalContainers; - - /** - * All the resources of the object that are in a clone model. - */ - protected Map additionnalResources; - - public PotentiallyReadonlyEObject() { - super(); - - // boolean potentiallyReadOnly = (MutClassesOnlyCloner.getInstance() - // .consideredMutabilityFor(this.eClass()) == - // ClassMutability.completelyReadonly); - - // if (potentiallyReadOnly) { - additionnalContainers = new HashMap(); - additionnalResources = new HashMap(); - // } - - } - - /** - * Simple util operation to find the resource set of an object. - * - * @param o - * The object to analyze. - * @return The resource set of o, or null if there is none. - */ - public static ResourceSet findResourceSet(InternalEObject o) { - if (o.eResource() != null) - return o.eResource().getResourceSet(); - else - return null; - } - - /** - * Switch to the context of another object. - * - * @param otherEnd - * @return - */ - protected ReadonlyContext changeContext(InternalEObject otherEnd) { - - // We find the resource set we are located in - ResourceSet currentRS = findResourceSet(this); - - // We must only change the context if the otherEnd is in a LooseResource - // in another ResourceSet - // AND if we are considered readonly by the cloning technique of the LooseResource - boolean toChange = (otherEnd.eResource() != null) - && (otherEnd.eResource() instanceof LooseResource) - && (((LooseResource) (otherEnd.eResource())).getCloner() - .getTagOf(this.eClass()) == ClassTag.completelyReadonly) - && (otherEnd.eResource().getResourceSet() != null) - && (otherEnd.eResource().getResourceSet() != currentRS); - - // If we do change the context - if (toChange) { - - // We store the context - ReadonlyContext context = new ReadonlyContext(this); - - // We get the resource set in which "things happen" - ResourceSet otherResourceSet = otherEnd.eResource() - .getResourceSet(); - - // If we don't have entries for the otherResourceSet, - // we create ones with 'null' (ie not contained in this resource - // yet) - if (!this.additionnalContainers.keySet().contains(otherResourceSet)) { - this.additionnalContainers.put(otherResourceSet, null); - this.additionnalResources.put(otherResourceSet, null); - } - - // We remove ourselves from a resource - if (this.eResource() != null) - this.eResource().getContents().remove(this); - - // We temporarily change the container (which might of course erase - // the resource) - InternalEObject otherCont = this.additionnalContainers - .get(otherResourceSet); - this.eBasicSetContainer(otherCont); - - // We temporarily change the resource, if the container was null - if (otherCont == null) { - Resource otherResource = this.additionnalResources - .get(otherResourceSet); - if (otherResource != null) - otherResource.getContents().add(this); - } - - // And we return the context for further restore - return context; - - } - - // If we don't change the context, we explicitly return null - else { - return null; - } - } - - /** - * Restore a previously stored context. - * - * @param context - */ - protected void restoreContext(ReadonlyContext context) { - - // If null, nothing to restore - if (context != null) { - - // We find the resource set we are located in - ResourceSet currentResourceSet = findResourceSet(this); - - // We store the current context in our maps - this.additionnalContainers.put(currentResourceSet, this.eContainer); - this.additionnalResources.put(currentResourceSet, this.eResource()); - - // And we restore the context - if (this.eResource() != null) - this.eResource().getContents().remove(this); - this.eBasicSetContainer(context.getContainer()); - if (context.getContainer() == null && context.getResource() != null) - context.getResource().getContents().add(this); - - } - } - - - @Override - /* - * (non-Javadoc) Appelé lorsqu'un B (this) est ajouté à un A (otherEnd) - * - * @see - * org.eclipse.emf.ecore.impl.BasicEObjectImpl#eInverseAdd(org.eclipse.emf - * .ecore.InternalEObject, int, java.lang.Class, - * org.eclipse.emf.common.notify.NotificationChain) - */ - public NotificationChain eInverseAdd(InternalEObject otherEnd, - int featureID, Class baseClass, NotificationChain msgs) { - - ReadonlyContext context = null; - // Changing the context - context = changeContext(otherEnd); - - // Actual call - NotificationChain result = super.eInverseAdd(otherEnd, featureID, - baseClass, msgs); - - // Restoring the context - restoreContext(context); - - // And finally we return the NotificationChain - return result; - } - - @Override - /* - * (non-Javadoc) Appelé lorsqu'un B (this) est retiré d'un A (otherEnd) - * - * @see - * org.eclipse.emf.ecore.impl.BasicEObjectImpl#eInverseRemove(org.eclipse - * .emf.ecore.InternalEObject, int, java.lang.Class, - * org.eclipse.emf.common.notify.NotificationChain) - */ - public NotificationChain eInverseRemove(InternalEObject otherEnd, - int featureID, Class baseClass, NotificationChain msgs) { - - ReadonlyContext context = null; - // Changing the context - context = changeContext(otherEnd); - - // Actual call - NotificationChain result = super.eInverseRemove(otherEnd, featureID, - baseClass, msgs); - - // Restoring the context - restoreContext(context); - - // And finally we return the NotificationChain - return result; - } - - - /** - * Added method that allow one to change the resource of the object without - * changing what resources think they contain. - * Created for the "save" method of LooseResource, that must briefly change - * the resources of the elements of a model for correct referencing between resources. - * @param resource The resource to set in the object. The resource won't be changed. - */ - public void setResourceNonInverse(Internal resource){ - eSetDirectResource(resource); - } - -} diff --git a/SomeMetamodel/.settings/org.eclipse.core.resources.prefs b/SomeMetamodel/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index b96e5eb5490127609820880724f8d1d44b8ce128..0000000000000000000000000000000000000000 --- a/SomeMetamodel/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding//model/SomeMetamodel.ecorediag=UTF-8 diff --git a/SomeMetamodel/META-INF/MANIFEST.MF b/SomeMetamodel/META-INF/MANIFEST.MF index 68061bcd1ecfa4594f21f003f4d926d867fbfc32..eece629ebfeecb802eacb8ed0a05dd37748ac740 100644 --- a/SomeMetamodel/META-INF/MANIFEST.MF +++ b/SomeMetamodel/META-INF/MANIFEST.MF @@ -18,7 +18,7 @@ Export-Package: somemetamodel, somemetamodelextension.util Require-Bundle: org.eclipse.core.runtime, org.eclipse.emf.ecore;visibility:=reexport, - fr.inria.diverse.cloning.cloner;bundle-version="0.1.0", + fr.inria.diverse.cloning.runtime;bundle-version="0.1.0", fr.inria.diverse.cloning.benchmark.common Bundle-ActivationPolicy: lazy Service-Component: component.xml diff --git a/cloningBenchmarkMaterial5921503524522529258/.classpath b/cloningBenchmarkMaterial5921503524522529258/.classpath deleted file mode 100644 index 7ec87d4387f152d29b14b65bba05f313d487b60f..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/.classpath +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cloningBenchmarkMaterial5921503524522529258/META-INF/MANIFEST.MF b/cloningBenchmarkMaterial5921503524522529258/META-INF/MANIFEST.MF deleted file mode 100644 index 20458f5e60dc3d8099eecc2495e7dffbed93e3ee..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/META-INF/MANIFEST.MF +++ /dev/null @@ -1,10 +0,0 @@ -Manifest-Version: 1.0 -Service-Component: component.xml -Require-Bundle: org.eclipse.core.runtime;bundle-version="3.9.0", org.eclipse.emf.ecore;bundle-version="2.9.1",fr.inria.diverse.cloning.cloner;bundle-version="0.1.0",fr.inria.diverse.cloning.benchmark.common;bundle-version="1.0.0",org.eclipse.emf.ecore.xmi -Bundle-ActivationPolicy: lazy -Bundle-Version: 1 -Bundle-Name: CloningBenchmark -Bundle-Activator: cloningbenchmark.Activator -Bundle-ManifestVersion: 2 -Bundle-SymbolicName: CloningBenchmark -Bundle-RequiredExecutionEnvironment: JavaSE-1.7 diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/cloningbenchmark/Activator.class b/cloningBenchmarkMaterial5921503524522529258/bin/cloningbenchmark/Activator.class deleted file mode 100644 index 5698c4770c6ed25a860e2d377f290ed02e3f8051..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/cloningbenchmark/Activator.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/cloningbenchmark/BenchmarkMaterialImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/cloningbenchmark/BenchmarkMaterialImpl.class deleted file mode 100644 index 50306c504dbe107148068a0eb0b927401ce47aa1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/cloningbenchmark/BenchmarkMaterialImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class0.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class0.class deleted file mode 100644 index 7f1ec9f6d226fd2d2796698350d4a5003b10db1f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class0.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class1.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class1.class deleted file mode 100644 index 63b964d71171f28b1b44e2f18bf2d8f32521ccae..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class1.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class10.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class10.class deleted file mode 100644 index 057a1ca2a17f02b344f1de26f17e06f641aea8d1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class10.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class2.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class2.class deleted file mode 100644 index 592751b11a17bf8c354aa2f8662c75e4845a10c7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class2.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class3.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class3.class deleted file mode 100644 index b2a2320aa7347b64b8cd9a0b9b348ab1315ff90c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class3.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class4.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class4.class deleted file mode 100644 index 0cf15518e88dffe5c79df012a954eeb1df906a97..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class4.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class5.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class5.class deleted file mode 100644 index 86acda3406e299cfbcb3fd1e551b17a293e8038e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class5.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class6.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class6.class deleted file mode 100644 index 9c6256ce08b1414b175d88bc64095c5563e0c30e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class6.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class7.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class7.class deleted file mode 100644 index 8ddd15084a4c9e277ee80f9a8d6a879a56182ee6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class7.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class8.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class8.class deleted file mode 100644 index b37b77630c363308a9f4986f7565ea59322828f2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class8.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class9.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class9.class deleted file mode 100644 index 61f069384804585c50cec1af1c8c8e1f9c3a1c7f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Class9.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Mm0Factory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Mm0Factory.class deleted file mode 100644 index 943fc0a5d5401e041c3adb1c6e386381b2bd0de8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Mm0Factory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Mm0Package$Literals.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Mm0Package$Literals.class deleted file mode 100644 index 58e0fec1cc00962c813e6171a78b8a2ba1e32006..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Mm0Package$Literals.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Mm0Package.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Mm0Package.class deleted file mode 100644 index 9f0f0aec5139baed871b2794eb69e1eb783190e2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/Mm0Package.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class0Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class0Impl.class deleted file mode 100644 index 43dfb8686cbcdbd3040565cd73f41685fb700e1f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class0Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class10Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class10Impl.class deleted file mode 100644 index 64bf19d02c5f09426733ebb593af4b3b93a2260d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class10Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class1Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class1Impl.class deleted file mode 100644 index 026caf86ef8ad2217446e4c03f2fa9d8716ea841..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class1Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class2Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class2Impl.class deleted file mode 100644 index 24a5ce977509f748fdd9ba6adf002a9f9786b7ea..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class2Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class3Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class3Impl.class deleted file mode 100644 index fa191f813bf59da282a4e98280fcb8f8dea1266f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class3Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class4Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class4Impl.class deleted file mode 100644 index 528cd47bbf72b40f2172ed755879acfc8476851c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class4Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class5Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class5Impl.class deleted file mode 100644 index b480b1ecb11e0efc7cf68679845c44bba7087e60..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class5Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class6Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class6Impl.class deleted file mode 100644 index 0122610b5d9e98f00bac6211474e4b3721934495..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class6Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class7Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class7Impl.class deleted file mode 100644 index b619487886687be9225fe6dee591b45ac921bcc3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class7Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class8Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class8Impl.class deleted file mode 100644 index 7eecc125f4a138698339eb13633698f09fdbba59..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class8Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class9Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class9Impl.class deleted file mode 100644 index a58bcb41129509dbb9b80d5b7761535c8d146d2b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Class9Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Mm0FactoryImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Mm0FactoryImpl.class deleted file mode 100644 index 118a8111529abe2cb75987874f7b7aa6233a11eb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Mm0FactoryImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Mm0PackageImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Mm0PackageImpl.class deleted file mode 100644 index e6fa8a00f96dd4328c94ee0110553e6d8e685a20..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/impl/Mm0PackageImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/util/Mm0AdapterFactory$1.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/util/Mm0AdapterFactory$1.class deleted file mode 100644 index 9fc66eff8f64d76eb5d194e224dd1b86e0036a54..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/util/Mm0AdapterFactory$1.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/util/Mm0AdapterFactory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/util/Mm0AdapterFactory.class deleted file mode 100644 index 4b75b3fb5e70ed1f14489668a704f2f525bc82c0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/util/Mm0AdapterFactory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/util/Mm0Switch.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0/util/Mm0Switch.class deleted file mode 100644 index 6fa56f9fcc1ade9a7acb8bcad5edff7081e4070d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0/util/Mm0Switch.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class0DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class0DeepPImpl.class deleted file mode 100644 index 12da0516d1d63f2e55b309f26b2f40cea9379836..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class0DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class10DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class10DeepPImpl.class deleted file mode 100644 index 221c4d7a071f9b7d6203771cb9e2c3b4b79ca4a5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class10DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class1DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class1DeepPImpl.class deleted file mode 100644 index af357d6653c2b6c9a4d639b306ddc854224e5e19..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class1DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class2DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class2DeepPImpl.class deleted file mode 100644 index 3b44775b73b3984426146ef755d71ab565efdb9e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class2DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class3DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class3DeepPImpl.class deleted file mode 100644 index 8b2cb84fae7827c63127eda2061ac810ca7c50de..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class3DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class4DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class4DeepPImpl.class deleted file mode 100644 index 844a2ff154dd1d2ea84275dc7bbf6288ccfc2414..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class4DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class5DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class5DeepPImpl.class deleted file mode 100644 index 983b0b5d8445cc49a6588957c7b7830384cbae97..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class5DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class6DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class6DeepPImpl.class deleted file mode 100644 index 2bc5ea0fdb537afa6210bc8c6dd3341c0ab47645..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class6DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class7DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class7DeepPImpl.class deleted file mode 100644 index a838287f98f408d4000e13f825bd827a22a5e2cb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class7DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class8DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class8DeepPImpl.class deleted file mode 100644 index edae51f9011edb91c90553875b37f4a7ec8a4790..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class8DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class9DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class9DeepPImpl.class deleted file mode 100644 index 635320e9102de5bfdfa2c897e6e189b5eee95f11..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Class9DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Mm0DeepCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Mm0DeepCloningMaterial.class deleted file mode 100644 index b8ecbee7ac397d639306a277929ed511ffa15262..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Mm0DeepCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Mm0DeepLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Mm0DeepLightCopier.class deleted file mode 100644 index 5f18188983345dccef75fb8221509ef0fecf21c9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Mm0DeepLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Mm0DeepTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Mm0DeepTags.class deleted file mode 100644 index aab57a16857b27eeffa13c5bc0e78cf607de9eb6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0deep/Mm0DeepTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0modelcreator/Mm0ModelCreator.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0modelcreator/Mm0ModelCreator.class deleted file mode 100644 index c1f09278e9b55f6f3dc003061b5130867c4c98f8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0modelcreator/Mm0ModelCreator.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class0MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class0MutClassOnlyPImpl.class deleted file mode 100644 index ccabe1e72534e79bbc8f10d96354f0384b913a26..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class0MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class10MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class10MutClassOnlyPImpl.class deleted file mode 100644 index eff1a20dea58b68732b0386d2da13dfae2dae13f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class10MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class1MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class1MutClassOnlyPImpl.class deleted file mode 100644 index 076fa9733cbba560604220ff34b290debd0c36e0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class1MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class2MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class2MutClassOnlyPImpl.class deleted file mode 100644 index 04ca81521be6d7e97c1af7b4f373b049bd0e4ada..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class2MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class3MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class3MutClassOnlyPImpl.class deleted file mode 100644 index c942a31fd0ac86858c983ef188501fd66927af29..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class3MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class4MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class4MutClassOnlyPImpl.class deleted file mode 100644 index 861970cde18a0fe97f0ef22f0781ec6abc084aef..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class4MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class5MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class5MutClassOnlyPImpl.class deleted file mode 100644 index b3d1e5f71a59c2145e9631c1318c9e16628cbe68..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class5MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class6MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class6MutClassOnlyPImpl.class deleted file mode 100644 index 93e00cbfaf048026872b9a613b7691713f56dde4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class6MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class7MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class7MutClassOnlyPImpl.class deleted file mode 100644 index 6d8528a7c6422a01d1e5764067a2e1f78cb21e3b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class7MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class8MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class8MutClassOnlyPImpl.class deleted file mode 100644 index 9418710a8ac1d6bb87cd1cd0fd1e0c73855c1b4f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class8MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class9MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class9MutClassOnlyPImpl.class deleted file mode 100644 index 4dd4ff19d58d9b2ece002edef4a8f9235f4414ac..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Class9MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Mm0MutClassOnlyCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Mm0MutClassOnlyCloningMaterial.class deleted file mode 100644 index d5629f9970b2328ff8829fe3bddc12e6b742a363..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Mm0MutClassOnlyCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Mm0MutClassOnlyLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Mm0MutClassOnlyLightCopier.class deleted file mode 100644 index 36f6fb36b608093e6a7d9d11ec1ec4ea70803354..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Mm0MutClassOnlyLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Mm0MutClassOnlyTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Mm0MutClassOnlyTags.class deleted file mode 100644 index ffad9f3c6932ab5ec1d1eac2d1752ccfbaca5bfd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm0mutclassonly/Mm0MutClassOnlyTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class11.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class11.class deleted file mode 100644 index 16dd9808ec115f60a50da9ef02a5e4c69105980f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class11.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class12.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class12.class deleted file mode 100644 index 463a55a45d2541c34c66d984e7271252802aa5be..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class12.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class13.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class13.class deleted file mode 100644 index 9cd624c5064a4a49a0a4806e7e923f9111e15746..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class13.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class14.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class14.class deleted file mode 100644 index 0ee16ece1b2fda6fce1ac31c4699d698cad31e0c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class14.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class15.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class15.class deleted file mode 100644 index e416924ae3684edcbd1c14d88e235bee9d3cf463..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class15.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class16.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class16.class deleted file mode 100644 index 079ce23c6e27f6230bc5b85c776d29385cdcf8d0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Class16.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Mm1Factory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Mm1Factory.class deleted file mode 100644 index 1fe4f9f101c5c98cfd4a92bdfbc005ff16426b46..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Mm1Factory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Mm1Package$Literals.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Mm1Package$Literals.class deleted file mode 100644 index 4c2d79feb95d7a7fd219d22c6bde1c3d3ea48efd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Mm1Package$Literals.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Mm1Package.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Mm1Package.class deleted file mode 100644 index bcc928aa2ec34a6a64576882190894e97a213799..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/Mm1Package.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class11Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class11Impl.class deleted file mode 100644 index 3b6e9e44192432e8a434cb7a45f866f9ed0eb1eb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class11Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class12Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class12Impl.class deleted file mode 100644 index 0fb2cee2ed190b4e342a05bb89ed43442d6793f8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class12Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class13Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class13Impl.class deleted file mode 100644 index 00cb8dab2a6b5f3159a5b4c9ccb32610608b3212..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class13Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class14Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class14Impl.class deleted file mode 100644 index 3d4aac49012ad3ea1452cc58537004467fac1b67..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class14Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class15Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class15Impl.class deleted file mode 100644 index 1d5883ec50fcc90205ed70856b900e5d4d61b79f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class15Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class16Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class16Impl.class deleted file mode 100644 index 50e139c4cc1c26ea1029915ddb560cebe30a2277..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Class16Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Mm1FactoryImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Mm1FactoryImpl.class deleted file mode 100644 index 4476eac6bc381a2c536f1984f1aaeda700eaf6f4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Mm1FactoryImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Mm1PackageImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Mm1PackageImpl.class deleted file mode 100644 index 00c58e8c8a7d0fc049edf01a071ba5acf066ad76..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/impl/Mm1PackageImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/util/Mm1AdapterFactory$1.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/util/Mm1AdapterFactory$1.class deleted file mode 100644 index 9d34a248e279ea615340f1b736e66dda9bf103f2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/util/Mm1AdapterFactory$1.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/util/Mm1AdapterFactory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/util/Mm1AdapterFactory.class deleted file mode 100644 index 061ce91aa65989b04915ec9f611e084881ab4b4a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/util/Mm1AdapterFactory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/util/Mm1Switch.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1/util/Mm1Switch.class deleted file mode 100644 index d37f6584723646dc756bfad119081abbc8c3f30a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1/util/Mm1Switch.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class11DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class11DeepPImpl.class deleted file mode 100644 index 60540263c24c0c1882bb89d87f221efaadf954ce..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class11DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class12DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class12DeepPImpl.class deleted file mode 100644 index 61cf01fcb504116f1ec41aea353fd12f775ac1eb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class12DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class13DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class13DeepPImpl.class deleted file mode 100644 index 06366ecc87a4b55c3865d5a74e9a5e9a90994bad..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class13DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class14DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class14DeepPImpl.class deleted file mode 100644 index 4673d4bd9dcb599ec9b966ba0068bde85cb8e607..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class14DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class15DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class15DeepPImpl.class deleted file mode 100644 index 6aa5f999a2c1266a36ded5eb02c59791e7be3d21..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class15DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class16DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class16DeepPImpl.class deleted file mode 100644 index adde430bb34a0b007781783c2cf8299b8f2a5016..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Class16DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Mm1DeepCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Mm1DeepCloningMaterial.class deleted file mode 100644 index 7c85d3686247a4570deaff1ebf438bd61786d62b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Mm1DeepCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Mm1DeepLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Mm1DeepLightCopier.class deleted file mode 100644 index 104d389cb8a9e6d14c4097a76b2d54d9763f3ca7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Mm1DeepLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Mm1DeepTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Mm1DeepTags.class deleted file mode 100644 index 3d1c3c400ff8c443a8710ff5a73684a9ed04d9b8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1deep/Mm1DeepTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1modelcreator/Mm1ModelCreator.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1modelcreator/Mm1ModelCreator.class deleted file mode 100644 index 701571ba87d2665e9724749087003e01b138b9c9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1modelcreator/Mm1ModelCreator.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class11MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class11MutClassOnlyPImpl.class deleted file mode 100644 index ddcb7a6f9cf8fd7d45ab9e87488b6fe8f05d12a4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class11MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class12MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class12MutClassOnlyPImpl.class deleted file mode 100644 index 352123a8125e6180942c6c819d8adc7ec8818abe..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class12MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class13MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class13MutClassOnlyPImpl.class deleted file mode 100644 index 31d890656fd42b9cc793db94a4e6d35cb4d04ea0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class13MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class14MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class14MutClassOnlyPImpl.class deleted file mode 100644 index 313a1a341527727889a1e706e150b29314cd4981..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class14MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class15MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class15MutClassOnlyPImpl.class deleted file mode 100644 index df174704d59be4fe88a3e89d3e88f99f8925afb1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class15MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class16MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class16MutClassOnlyPImpl.class deleted file mode 100644 index 059e32957e603b1ae47ea1b272bf5bee79e613be..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Class16MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Mm1MutClassOnlyCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Mm1MutClassOnlyCloningMaterial.class deleted file mode 100644 index 8f6dcb9237324258e8433a5171e6627a6d86b0e0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Mm1MutClassOnlyCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Mm1MutClassOnlyLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Mm1MutClassOnlyLightCopier.class deleted file mode 100644 index 2509353109516d6fa26158087542bde677a4ffd8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Mm1MutClassOnlyLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Mm1MutClassOnlyTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Mm1MutClassOnlyTags.class deleted file mode 100644 index d56900483812e07d0cd90a0df831053b5d78d297..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm1mutclassonly/Mm1MutClassOnlyTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class17.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class17.class deleted file mode 100644 index e494a172b499596c722c22a6613c8bd5e1dffb91..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class17.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class18.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class18.class deleted file mode 100644 index 66aa90307a7f3965486fea864e2461cb3295b727..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class18.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class19.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class19.class deleted file mode 100644 index 1125c46ec3845bbacbe10d05de0ed9659c8b2144..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class19.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class20.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class20.class deleted file mode 100644 index e2c543ca4f4a0ad51ee4cc2262a62033c7f3a100..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class20.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class21.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class21.class deleted file mode 100644 index 547d458d90c45ba5132c99334fbc7cc43afbb513..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class21.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class22.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class22.class deleted file mode 100644 index 451a57aeccdea3fd3f568b3d58dbe76232647799..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class22.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class23.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class23.class deleted file mode 100644 index dfee4543dd7fe65d3990d42fb641adb8d0935fc0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class23.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class24.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class24.class deleted file mode 100644 index d93be1892454c1a3b58c0e095a327f97e7cc16b9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class24.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class25.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class25.class deleted file mode 100644 index 3b3a7a5adfce92ef9830b8c990e4709e9a0a8882..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class25.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class26.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class26.class deleted file mode 100644 index b44eaa868d9ab66c23e5c25b6fb3ffabd832cba5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class26.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class27.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class27.class deleted file mode 100644 index 01faec1b7b3bf6cf1db2fa82a49654a40c81f511..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class27.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class28.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class28.class deleted file mode 100644 index 294f68a77aba7ee88a64d12b7b8d44e1efd2ef98..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class28.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class29.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class29.class deleted file mode 100644 index 9ceac506d14f80af79b81e49bd389873ae202dd3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class29.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class30.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class30.class deleted file mode 100644 index 99e08ad8a85246bce864a35ceade711d1aef8f64..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class30.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class31.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class31.class deleted file mode 100644 index ce9c57eec376214c4917b5a78135e3b9750f9cc5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class31.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class32.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class32.class deleted file mode 100644 index 038ddc8d4ab8f2e59584afd0bdc512bf180247e9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class32.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class33.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class33.class deleted file mode 100644 index e83a46bad84cfdbcecd3a8a57af3c2d7be54de26..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class33.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class34.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class34.class deleted file mode 100644 index 5cff7c9b41fdb6a35f41b5dd82c9cb35b5130846..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class34.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class35.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class35.class deleted file mode 100644 index 15b629d904f327e242ff091dd4de3b69e887be2e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class35.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class36.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class36.class deleted file mode 100644 index e0186df5c98469ce38fb535c4a1398597110a35a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class36.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class37.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class37.class deleted file mode 100644 index 4dd2d088198126abddfec422e684c0c9a5842707..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class37.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class38.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class38.class deleted file mode 100644 index 2fdb8e007f2caacefa8fa73985aff441564fc748..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class38.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class39.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class39.class deleted file mode 100644 index 5ab9ff8df7af3d74672db0ac5df168cc14e38444..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class39.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class40.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class40.class deleted file mode 100644 index 18867136f4263fad4e6af29b5fa0884c069fea68..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class40.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class41.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class41.class deleted file mode 100644 index fac2401ad0bb71d2e14c919e2eaab0d0c93f3c3c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class41.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class42.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class42.class deleted file mode 100644 index ca2ee23bd1bbb9ab91689497373f652072caa2d1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class42.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class43.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class43.class deleted file mode 100644 index 7d91fd9e3d2d20a9be666ed18e57ea332fefe785..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class43.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class44.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class44.class deleted file mode 100644 index 8a707725296493087a015d0fb8d86bf5d8de362a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class44.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class45.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class45.class deleted file mode 100644 index b70d4dad454f7d4a37454c7eca2a82191a8eee70..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class45.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class46.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class46.class deleted file mode 100644 index 2ef3c84ea18f2af6ef139865e6dc45031fad437e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class46.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class47.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class47.class deleted file mode 100644 index 8a58b21b9c5b846410da85694d6588a8c663c613..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class47.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class48.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class48.class deleted file mode 100644 index a74ac8558fd653ea7186f6dd6679b09723a49025..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class48.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class49.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class49.class deleted file mode 100644 index 2a1bf646840f93b6f3dc170e85d3b63a655106e3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class49.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class50.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class50.class deleted file mode 100644 index 038495088322f082c548ecba0fe25c9916f3df29..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class50.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class51.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class51.class deleted file mode 100644 index 7f1f1c96b0f8c39c23e76a1db842a9d8e3fbfae9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class51.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class52.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class52.class deleted file mode 100644 index 11336f9267b42483dd748f248f3d00206af70f8f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class52.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class53.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class53.class deleted file mode 100644 index 3624e3e8d232959968241d9e4f2871c77887d5dd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class53.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class54.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class54.class deleted file mode 100644 index 554a4284aebe3fb30b326a439d21903b2b528532..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class54.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class55.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class55.class deleted file mode 100644 index a58851d8504a16d448dc542208035b96b28c11c2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class55.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class56.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class56.class deleted file mode 100644 index b168e3add8f872d9046dcea298729816f82cbf14..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class56.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class57.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class57.class deleted file mode 100644 index 128c724d396d546f70c743725a7161df1c5c6339..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class57.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class58.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class58.class deleted file mode 100644 index 84f1e116324cb74803f361e8255f5d5234bff226..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class58.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class59.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class59.class deleted file mode 100644 index 8c572540e82a9eb80c5ed6d5ce9ab0ae175f3b8d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class59.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class60.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class60.class deleted file mode 100644 index 6039d4c82ab06d711db3b47030029d334ed540c7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class60.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class61.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class61.class deleted file mode 100644 index 5809d77ea16e78972199498c29e38005dddab255..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class61.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class62.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class62.class deleted file mode 100644 index fe5b649188b48266f8bbf28994479c31b6b2be44..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class62.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class63.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class63.class deleted file mode 100644 index 4021eb42e9b227eb9edd02471a69aabf275a1568..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class63.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class64.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class64.class deleted file mode 100644 index bf8f27b943782282b2c695d6172e095e4ab117b2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class64.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class65.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class65.class deleted file mode 100644 index ba120db31cfcf857d3d1f00e8b7a96416a876d74..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class65.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class66.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class66.class deleted file mode 100644 index 2bb6b637b05bb8f99c7ef4e6774bd253ede9a369..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class66.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class67.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class67.class deleted file mode 100644 index 90ed622a53875176658fec1e2deeae513c7d4f20..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class67.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class68.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class68.class deleted file mode 100644 index 28885e27dfafc024c613497645ec2026e9752e31..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class68.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class69.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class69.class deleted file mode 100644 index b7c0cb685bfb86f8ca3a1c6a1b47f32a5eb8289d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class69.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class70.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class70.class deleted file mode 100644 index f42b2c4ffa7cc0086aeb6ef83cbbd6557c7466fd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class70.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class71.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class71.class deleted file mode 100644 index 44c58eaef4c1892d7bb442925c8a73fa98c72f33..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class71.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class72.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class72.class deleted file mode 100644 index 4c4a538e884170b680539fb7022d0f206bcbcbab..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class72.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class73.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class73.class deleted file mode 100644 index 944c0f3fccc5c3003e3a87a33d071cf00a613a86..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class73.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class74.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class74.class deleted file mode 100644 index 56e4534fb66ca049a493b8312c6300c9c05860e1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class74.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class75.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class75.class deleted file mode 100644 index 63c5bb05a7d72db9d73e446723d29ca966e56e8e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class75.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class76.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class76.class deleted file mode 100644 index d3d1cdafe1126ea13b9a1d678d601d3cc7325dff..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class76.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class77.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class77.class deleted file mode 100644 index 02451e7b7f163115a7f13c5482cb0518a3cc6ab0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class77.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class78.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class78.class deleted file mode 100644 index a4e6fc6860262e33154c1120fb5abc1794033c61..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class78.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class79.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class79.class deleted file mode 100644 index 179acc18642f4f621a552f34adb8a2e74a9310b7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class79.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class80.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class80.class deleted file mode 100644 index 1f2f562e0adb63af7d91d1f4a9fa2b454ed66784..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class80.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class81.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class81.class deleted file mode 100644 index 13b90699587e340032d5106cbcca41b96c7b9751..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class81.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class82.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class82.class deleted file mode 100644 index 53e1f53a15b4c66cf8a4a250e79fac1dd33c9e92..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class82.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class83.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class83.class deleted file mode 100644 index da3a51598cce31aedcc81e880d5701238e6fbd1b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class83.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class84.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class84.class deleted file mode 100644 index 1baae7f633b16f2486e1685f2efa006ee9451ed2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class84.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class85.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class85.class deleted file mode 100644 index 1aadb6bf36c623a19a13f91510f453bdea5dbbc5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Class85.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Mm2Factory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Mm2Factory.class deleted file mode 100644 index 6033451f962ce678c138c5ca3b3d5d19f872b0bb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Mm2Factory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Mm2Package$Literals.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Mm2Package$Literals.class deleted file mode 100644 index 8bbe1ca9c65c5430a34d2a678b3d166e311d8f20..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Mm2Package$Literals.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Mm2Package.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Mm2Package.class deleted file mode 100644 index 8de6fa44595d506e4725797c4be8c3fd058bc24b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/Mm2Package.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class17Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class17Impl.class deleted file mode 100644 index 51cf72671364f993300f566bfb96b72be602e8b9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class17Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class18Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class18Impl.class deleted file mode 100644 index 2ef702b6b7a15539563c3fc32784c53edb5a5c37..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class18Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class19Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class19Impl.class deleted file mode 100644 index e6f550a330f8cbe81c4ae47a1fb5f53a20d49af5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class19Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class20Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class20Impl.class deleted file mode 100644 index 4c6a26bea248c97ffbed2b07f98770a9d7ca3127..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class20Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class21Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class21Impl.class deleted file mode 100644 index b24d5af893c3e38170d7e18881d18a8a5f5971c2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class21Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class22Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class22Impl.class deleted file mode 100644 index 9ed85a386a1d1249215f80bbb92a476f25435a2a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class22Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class23Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class23Impl.class deleted file mode 100644 index 3a73977f38fce869b3fc4546aa8090be80054385..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class23Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class24Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class24Impl.class deleted file mode 100644 index 2a0236df61b4b39cb9ea5a52378c10e360ce08e4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class24Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class25Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class25Impl.class deleted file mode 100644 index 3d3dafbf41635a710134cf3ba7b16c321c1d7b91..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class25Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class26Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class26Impl.class deleted file mode 100644 index 47032b3fa8cbfc750f667aab365472f28fea475b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class26Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class27Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class27Impl.class deleted file mode 100644 index f11f660a6fcf30749bc6dd66dd355ba7f5eccf95..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class27Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class28Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class28Impl.class deleted file mode 100644 index 72b3c0b8d963c05b74e91bac0d61dc15da7d360b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class28Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class29Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class29Impl.class deleted file mode 100644 index 6c72e6bedfb901e2bc8768eea8f3762a7c85534f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class29Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class30Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class30Impl.class deleted file mode 100644 index 4ff59d076823b5d5a496e5fd52b634dba33abc2c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class30Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class31Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class31Impl.class deleted file mode 100644 index 2777a958a172aff65087e992f94343df3e5b2225..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class31Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class32Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class32Impl.class deleted file mode 100644 index dfdcf5c85fda2b2f0dd7717083c6a5ca70dea192..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class32Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class33Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class33Impl.class deleted file mode 100644 index 7bd2fb4b2a6171ae24b439d8002b613e4e559c8c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class33Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class34Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class34Impl.class deleted file mode 100644 index 3c2963d58244ed17dc5c86fd71d8e0c511bb50cd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class34Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class35Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class35Impl.class deleted file mode 100644 index b837d1bc0b2e768a848bd37a489ba3e5e37c2355..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class35Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class36Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class36Impl.class deleted file mode 100644 index 92eb030cda43bd5a55fc5c4dc6d05bd2d76a6338..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class36Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class37Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class37Impl.class deleted file mode 100644 index fdf49dc4e8e82e807fc4bfdfa591cf4349ab0351..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class37Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class38Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class38Impl.class deleted file mode 100644 index 52c3687472ff1780bad617bd161d44073cd216b6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class38Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class39Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class39Impl.class deleted file mode 100644 index 6b7a052441194271db198e7b92f1c2079cc26c1b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class39Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class40Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class40Impl.class deleted file mode 100644 index d40f9bf8154f8b95ac30af376c3f760bbb3911a3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class40Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class41Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class41Impl.class deleted file mode 100644 index 6125bc18b5e2e3c713743fe35a6a3782aa46c48a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class41Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class42Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class42Impl.class deleted file mode 100644 index 4a8226b68b58c971121df8163a94308761912442..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class42Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class43Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class43Impl.class deleted file mode 100644 index 0b8f1dc1b00737d2aaed4fe47bf731027f3af3ec..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class43Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class44Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class44Impl.class deleted file mode 100644 index 1df2dd6d6b3d878e93bf7338f65978f10d975b64..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class44Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class45Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class45Impl.class deleted file mode 100644 index 424202f5ef96cfa3233ec1d064d2542bc45fccbf..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class45Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class46Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class46Impl.class deleted file mode 100644 index 6fc72023fdb4eb20ee65a1d244d624edf541e869..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class46Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class47Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class47Impl.class deleted file mode 100644 index 61c9cfc8525c760e4f7fdffa76b287c90a88c268..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class47Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class48Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class48Impl.class deleted file mode 100644 index ffd63afb633bece92362d366f8a0bf11c77a5838..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class48Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class49Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class49Impl.class deleted file mode 100644 index 954683b05e8443aa5d60a22e93bab3eab8f1cc29..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class49Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class50Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class50Impl.class deleted file mode 100644 index a6aa9d5d062640fe92cbea6c7373342c49a0c36e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class50Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class51Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class51Impl.class deleted file mode 100644 index 351845e68869d282af2cac165b0e165717106b63..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class51Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class52Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class52Impl.class deleted file mode 100644 index 1e2a17ea3cf913de47c3317b6b7b08e1029ddfb5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class52Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class53Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class53Impl.class deleted file mode 100644 index 453e3442cbe9733c0cf4979ba748dd442d4d85d5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class53Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class54Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class54Impl.class deleted file mode 100644 index f377558c08b5d1f90bd600826d328416e1343ec5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class54Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class55Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class55Impl.class deleted file mode 100644 index b8d341adefbde9ae468a64577698a6f13ee7ec4a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class55Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class56Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class56Impl.class deleted file mode 100644 index a6a9fc289f0c0a830a5db3e0adde15b4f6ad516b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class56Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class57Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class57Impl.class deleted file mode 100644 index 279fecdb6ce144ac7d808ecfe383abbeec97e7b0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class57Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class58Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class58Impl.class deleted file mode 100644 index efb3d3ea327fec22b8854e77cb308d66379d3940..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class58Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class59Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class59Impl.class deleted file mode 100644 index 220082da876b52183426c309bdacbc39a4977c38..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class59Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class60Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class60Impl.class deleted file mode 100644 index 5aa93c1fb98012b3040b2321f99e5b42d31c1f94..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class60Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class61Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class61Impl.class deleted file mode 100644 index dbebdbdd84929827ef61fb8c44360eada3ca1f9f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class61Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class62Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class62Impl.class deleted file mode 100644 index e7254a4bcdeaa74a4d4022c4139880a21e1c13a5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class62Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class63Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class63Impl.class deleted file mode 100644 index 0b43c933c72ae9f91b8135ed55906655d5810ca6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class63Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class64Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class64Impl.class deleted file mode 100644 index 36319e3afe1bb22e75c9573d85babc9c257a10d4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class64Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class65Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class65Impl.class deleted file mode 100644 index ae48b0664f59ece4a98981a7fc614e35fe1dabbb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class65Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class66Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class66Impl.class deleted file mode 100644 index ef865b26638c0cec1d9f2a60480c361aa1716e63..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class66Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class67Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class67Impl.class deleted file mode 100644 index 508c460daeed1feffcd4721a54fd8c0dd313dcd3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class67Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class68Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class68Impl.class deleted file mode 100644 index b197e92808cca9954ab0b02f9ce6cc0a83ab5385..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class68Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class69Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class69Impl.class deleted file mode 100644 index 95ab39e1510652ea7e12453fd8a412d8964f1bbb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class69Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class70Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class70Impl.class deleted file mode 100644 index e155685de5790141349325b1afa42305a8ea5535..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class70Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class71Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class71Impl.class deleted file mode 100644 index 3006e353eeb6fa08b4e3e77f217c8265523fc913..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class71Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class72Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class72Impl.class deleted file mode 100644 index f21c75f28f50a2b6e70aa7d77d5822743c8fed07..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class72Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class73Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class73Impl.class deleted file mode 100644 index d4605454451ba79aef6b78b9e9931115c8926f44..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class73Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class74Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class74Impl.class deleted file mode 100644 index 82a949cc0aabc3f5c746c7cbe6716998bb42ba18..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class74Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class75Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class75Impl.class deleted file mode 100644 index 929317c523bc89c7cc841afa79b7f60736aaaddb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class75Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class76Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class76Impl.class deleted file mode 100644 index a4a7c316a19ea7abf5ab83ad1f871713bc02e34a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class76Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class77Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class77Impl.class deleted file mode 100644 index 585be42ffa32b28d096666e5917b7e1e926c44df..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class77Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class78Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class78Impl.class deleted file mode 100644 index ca8afa65598290d71b428f4e80bedaa3463f1a50..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class78Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class79Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class79Impl.class deleted file mode 100644 index d6e6b983e70b41bfcd80ef29c9c9f8db8e4c44d0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class79Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class80Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class80Impl.class deleted file mode 100644 index f46730a98d01aadf713d5f1f275b3b096e31a2c1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class80Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class81Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class81Impl.class deleted file mode 100644 index b5a092e3363c94062c207a39a647b210ac8f90af..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class81Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class82Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class82Impl.class deleted file mode 100644 index f51d88511acd5e060dbe2f98e9703ff817c80ef7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class82Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class83Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class83Impl.class deleted file mode 100644 index 3b06935e3bb99ab4dcaf6c1e7d0633e3b50ac512..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class83Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class84Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class84Impl.class deleted file mode 100644 index 0532602c6893f1790ef50b8892e37f45b97006d7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class84Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class85Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class85Impl.class deleted file mode 100644 index 7e9ab685524b8cf9d6ab11028121a9a8d2648c1b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Class85Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Mm2FactoryImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Mm2FactoryImpl.class deleted file mode 100644 index dad4034eda86547f5cc4c975514e72d09ea8e4c3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Mm2FactoryImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Mm2PackageImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Mm2PackageImpl.class deleted file mode 100644 index 69296e9612051b7937f7b6a05022c0940c0fa8ac..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/impl/Mm2PackageImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/util/Mm2AdapterFactory$1.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/util/Mm2AdapterFactory$1.class deleted file mode 100644 index 04a77651d8d498433ebc782bc064ed55bd9959a8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/util/Mm2AdapterFactory$1.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/util/Mm2AdapterFactory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/util/Mm2AdapterFactory.class deleted file mode 100644 index 939b18321c16aa1d5b9439f3daeaeca308b5d09e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/util/Mm2AdapterFactory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/util/Mm2Switch.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2/util/Mm2Switch.class deleted file mode 100644 index 78a33187cf6367f6a15780f2263be79ca9d2e313..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2/util/Mm2Switch.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class20DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class20DeepPImpl.class deleted file mode 100644 index 3f36af5238c55166491f340b669f8e267bf7a4cd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class20DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class22DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class22DeepPImpl.class deleted file mode 100644 index bd2dd306fdf7bc3b745b1aee7dbb50f8ea69d433..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class22DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class24DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class24DeepPImpl.class deleted file mode 100644 index 9bdd1360db5fffff6029c8e543e924ec027b655b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class24DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class27DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class27DeepPImpl.class deleted file mode 100644 index 3d12c4ede91141271156a69ccd07c8d410c1b99f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class27DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class31DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class31DeepPImpl.class deleted file mode 100644 index cbe771101493c4569d57920109de0f7e4ff70d41..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class31DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class35DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class35DeepPImpl.class deleted file mode 100644 index 6814451e00ccf2716f40a40a69345735d1a26287..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class35DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class37DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class37DeepPImpl.class deleted file mode 100644 index b7d8eac032688ad4f9757f8c609d7530ce5d3bab..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class37DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class39DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class39DeepPImpl.class deleted file mode 100644 index 3222c7f8235fb8e7cb654f0a21eac69249948caa..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class39DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class42DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class42DeepPImpl.class deleted file mode 100644 index 5eabe0d394bb63267520375c9a56930857f77c85..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class42DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class43DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class43DeepPImpl.class deleted file mode 100644 index 9c2f7c8d2a1f16f2079f60a49288df152abb9db3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class43DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class46DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class46DeepPImpl.class deleted file mode 100644 index 2ea4240529cac5fad67e053a76b0b4d4a7d74498..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class46DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class48DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class48DeepPImpl.class deleted file mode 100644 index e11df594cb672403a4091b3f5e9af45df537118e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class48DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class53DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class53DeepPImpl.class deleted file mode 100644 index 950c2e2984dfd66401f57930b3c3a5381edb8c93..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class53DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class54DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class54DeepPImpl.class deleted file mode 100644 index 8327a2d8064c10bfa65409175ae8197f7cea437e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class54DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class55DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class55DeepPImpl.class deleted file mode 100644 index c32fd8f2ce546ade88b0d0c59eb968d8d27f570b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class55DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class56DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class56DeepPImpl.class deleted file mode 100644 index 897e30d67ffd072d04752c20b7b1f0aad38cdcc5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class56DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class57DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class57DeepPImpl.class deleted file mode 100644 index 3597af4753c60012d2c522f45b958fcec2fa4c7c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class57DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class60DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class60DeepPImpl.class deleted file mode 100644 index fd854c08520b368978b4e83ef45e9470742f2eb1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class60DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class63DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class63DeepPImpl.class deleted file mode 100644 index 0865d22e5c06a0514dcad2738394532860fa4b81..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class63DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class65DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class65DeepPImpl.class deleted file mode 100644 index fbf4c66b5b6d7a516b60029926f51fedc8f61392..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class65DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class74DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class74DeepPImpl.class deleted file mode 100644 index ad664d75b4587e9c2dc8296e72e5604543f77f81..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class74DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class77DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class77DeepPImpl.class deleted file mode 100644 index c571b06a1b1b9f20f38102aeb62ce794ce98469e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class77DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class79DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class79DeepPImpl.class deleted file mode 100644 index dc2db3656711709df9fa0e0f9716d44069a24e8f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Class79DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Mm2DeepCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Mm2DeepCloningMaterial.class deleted file mode 100644 index aae169b4702e836da43be179e46aa50e92d7fadb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Mm2DeepCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Mm2DeepLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Mm2DeepLightCopier.class deleted file mode 100644 index 5f9110946b8924774bc6fcb06a245eda0d9a9a95..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Mm2DeepLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Mm2DeepTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Mm2DeepTags.class deleted file mode 100644 index 7516543f87fdc09db9c4e791531f799969dcc4ba..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2deep/Mm2DeepTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2modelcreator/Mm2ModelCreator.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2modelcreator/Mm2ModelCreator.class deleted file mode 100644 index 7d89e38130136a5d3cc3d7e56c72fa8514e132e7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2modelcreator/Mm2ModelCreator.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class20MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class20MutClassOnlyPImpl.class deleted file mode 100644 index 987d2c0e704b1f0d84e151596ced047b13621826..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class20MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class35MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class35MutClassOnlyPImpl.class deleted file mode 100644 index 5921bbf914bb221d4397ce09275a3a1aa7006b51..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class35MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class38MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class38MutClassOnlyPImpl.class deleted file mode 100644 index 932d78dd1a003c8622029d7215daec84c3fca11f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class38MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class43MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class43MutClassOnlyPImpl.class deleted file mode 100644 index a548ea43706310eac00dd6a9ab3fa7228ce8bab1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class43MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class53MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class53MutClassOnlyPImpl.class deleted file mode 100644 index 77f996e3c1b091add2adbe32ea381f5b347cb3e2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class53MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class62MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class62MutClassOnlyPImpl.class deleted file mode 100644 index d06607c807c5566772cfc9f32c1440823654641c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class62MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class63MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class63MutClassOnlyPImpl.class deleted file mode 100644 index 795b26694273d08a754be7ec8fdabcd62ac2564d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class63MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class65MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class65MutClassOnlyPImpl.class deleted file mode 100644 index 21276ab6962a7569a69384b677acfe46b8352d5b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class65MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class66MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class66MutClassOnlyPImpl.class deleted file mode 100644 index 9e920c692b0b7c5164cab7c048de461700140e5f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class66MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class71MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class71MutClassOnlyPImpl.class deleted file mode 100644 index c33cadff10663dd596a7a5fc41605109f13d2ae8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class71MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class74MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class74MutClassOnlyPImpl.class deleted file mode 100644 index 5798010cb8335a8ea01c54d0751e02c4ef4a67a2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class74MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class80MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class80MutClassOnlyPImpl.class deleted file mode 100644 index 867b0a025120f338b3bdc0d38f5a51a594bbb5af..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class80MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class84MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class84MutClassOnlyPImpl.class deleted file mode 100644 index 8f4099b9fe9a27bdfca254f50ada12a6b6a46161..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Class84MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Mm2MutClassOnlyCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Mm2MutClassOnlyCloningMaterial.class deleted file mode 100644 index 32fd7e1d527b346de388ce78d9f9067bdc92de1e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Mm2MutClassOnlyCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Mm2MutClassOnlyLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Mm2MutClassOnlyLightCopier.class deleted file mode 100644 index c19c86f194d0a0a4a892e6c94dc8c6ed01969877..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Mm2MutClassOnlyLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Mm2MutClassOnlyTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Mm2MutClassOnlyTags.class deleted file mode 100644 index 83ae5519c73f430130709a6307180ca69785b064..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm2mutclassonly/Mm2MutClassOnlyTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class100.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class100.class deleted file mode 100644 index 612dbcd339b6b00b6d5047b22d2f9dca893782bb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class100.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class101.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class101.class deleted file mode 100644 index cbf55a9e1a077a2e12ed32cdd029fc28644e1cea..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class101.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class102.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class102.class deleted file mode 100644 index d0d0bca6a1df06dee987b1df44c07bc1e1a4eb23..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class102.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class103.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class103.class deleted file mode 100644 index e4f6a6baf65a7abb7a17f3694f0c1c73a1fa4a2b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class103.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class104.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class104.class deleted file mode 100644 index d40af9f0418318c0219bf6c218d89df235904448..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class104.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class105.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class105.class deleted file mode 100644 index 6bdc9687e2e6240c6949abf604a847cf27b7db01..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class105.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class106.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class106.class deleted file mode 100644 index 7a55b0f1ad87c751474c9d7827acf815f40855f4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class106.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class107.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class107.class deleted file mode 100644 index bb9f2c6655bfbd51ec097bd83c7159afa13c7795..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class107.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class108.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class108.class deleted file mode 100644 index 981284841c34519ec48f90722ea5bf74045bf96c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class108.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class109.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class109.class deleted file mode 100644 index 51bd593b2a9d6d5a079e761f5a716934a77c9892..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class109.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class110.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class110.class deleted file mode 100644 index 333ead02bf743971ff95affcb68736c22d64d33c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class110.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class111.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class111.class deleted file mode 100644 index 9160bda89893328b9da8d9f0519ba5cea1056f8a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class111.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class112.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class112.class deleted file mode 100644 index 2005e38f96c1e13f8bc7dda542f4f20ebb958a89..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class112.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class113.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class113.class deleted file mode 100644 index ac8d35405f5d7cee009d40a325f07654c4db5dcc..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class113.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class114.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class114.class deleted file mode 100644 index 09bd82914bb85b1e63044d60f95d7fb243d73daa..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class114.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class115.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class115.class deleted file mode 100644 index 3f1ab12eeb87d5cbef4fe4369ee94bad99f6b85b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class115.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class116.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class116.class deleted file mode 100644 index 09227864095252d3610f7b293cc5f258a03c5e2b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class116.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class117.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class117.class deleted file mode 100644 index ebae397e69135169478866f01601965cd4645675..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class117.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class118.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class118.class deleted file mode 100644 index b8cdf5946048f5513cea161193b847c1b2bb749a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class118.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class119.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class119.class deleted file mode 100644 index 0b38d1c616e75c560d6007710a295b1c2c1b3fd6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class119.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class120.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class120.class deleted file mode 100644 index ab6c285ee29581a7fa0f7b98d83a0adea6e3c55e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class120.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class121.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class121.class deleted file mode 100644 index 8590d6b9df2c0ba8190bf10cd461b8484962af59..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class121.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class122.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class122.class deleted file mode 100644 index e2fd6b243f95ffd5d20bdd79bdfde54c9712749e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class122.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class123.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class123.class deleted file mode 100644 index b5659fb7cabaea57d47a54e743318c82544b6283..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class123.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class124.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class124.class deleted file mode 100644 index 8b8cbf1cdcd28e906c54a90417776001138803c1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class124.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class125.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class125.class deleted file mode 100644 index 6e97347df2fbcc5d913f045e07d2809ee183da21..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class125.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class126.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class126.class deleted file mode 100644 index 2219907947c22802e00c8ffeeb1c29319a392e98..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class126.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class127.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class127.class deleted file mode 100644 index 96337c28ae190ca275b38eadc64b3ba236c4722e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class127.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class128.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class128.class deleted file mode 100644 index c47b09b2c81a27c87ea1e858898e2fe64f50e6cf..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class128.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class129.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class129.class deleted file mode 100644 index 2ef0744e13657c5a1b122bfc97d3f7e302daf22c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class129.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class130.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class130.class deleted file mode 100644 index 228a0f90b5d6b931c99e6b7e1110ee60c8bc46c0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class130.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class131.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class131.class deleted file mode 100644 index 968eed5593bebb629471eda08f65394e9e46fecb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class131.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class132.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class132.class deleted file mode 100644 index 36008ca97b66bc5ca22bdfdb36a09898de132787..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class132.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class133.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class133.class deleted file mode 100644 index a49e121ad1eadb7417d432ab8f2317884959d0ec..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class133.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class134.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class134.class deleted file mode 100644 index a438f9bf20a129d616e78f7816e32cdafdbadf66..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class134.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class135.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class135.class deleted file mode 100644 index e25c7b9806f6b23a9b5e3091c8256a4c494f7a44..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class135.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class136.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class136.class deleted file mode 100644 index 34fd6852524aa2a483868263c367cb25a323401a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class136.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class137.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class137.class deleted file mode 100644 index fd06d48091c8c0397436bdd0ae957a58550c41d8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class137.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class138.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class138.class deleted file mode 100644 index 39155acab101763424f01319e32200b6d5ce665f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class138.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class139.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class139.class deleted file mode 100644 index 24694660e97f785451f32e26e4bbcd69c49e17a9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class139.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class86.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class86.class deleted file mode 100644 index 0f549ce953078caa97043178664b2932095289fe..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class86.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class87.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class87.class deleted file mode 100644 index f2df9721cd362355cdbb25a07046d711b93c2d78..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class87.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class88.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class88.class deleted file mode 100644 index 95a3c55aeb0981986f645194571645295e03f755..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class88.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class89.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class89.class deleted file mode 100644 index 6ee944ea21d6a158f2e478f9aee5e32a0d316af6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class89.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class90.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class90.class deleted file mode 100644 index 7cc7b80c8dba5a5427ebd92c8316c80215e0e490..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class90.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class91.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class91.class deleted file mode 100644 index 52c431008b595d747d3d42c3d442d9df81ac1685..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class91.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class92.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class92.class deleted file mode 100644 index 5481b18c0d23d86608fa0b655acff671b4a32c76..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class92.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class93.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class93.class deleted file mode 100644 index f3bd75f62c974468b76b31b510dd35e12676a811..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class93.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class94.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class94.class deleted file mode 100644 index f2b830fe3e78f9cc2f5f9c01a5652641b47abf6e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class94.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class95.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class95.class deleted file mode 100644 index 53791ec91cb55c3588087e406b23693e7c51357b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class95.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class96.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class96.class deleted file mode 100644 index 8b766373fbbe57b7c6817c9869181433b42af9b6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class96.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class97.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class97.class deleted file mode 100644 index fa001424e78c285fa02b0c6318fcf4552635810e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class97.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class98.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class98.class deleted file mode 100644 index 37a8cd0e4bbdb8cfde8afcdc73be97d0fa7e77a1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class98.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class99.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class99.class deleted file mode 100644 index ec17d5638e53641ef2eade7bcd4f98ef3d631abe..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Class99.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Mm3Factory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Mm3Factory.class deleted file mode 100644 index 3312b3100876af5664ad1354cf115c1505b96257..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Mm3Factory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Mm3Package$Literals.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Mm3Package$Literals.class deleted file mode 100644 index 527e2928946ae836f47e436f9dc25bdd70d4eb8c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Mm3Package$Literals.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Mm3Package.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Mm3Package.class deleted file mode 100644 index 1384dfc844bd6f8371d903744deefe392c62809d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/Mm3Package.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class100Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class100Impl.class deleted file mode 100644 index b104538b3e3e1a22936e409b0b09a5e3c0344a9d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class100Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class101Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class101Impl.class deleted file mode 100644 index 5959488030f8afe61be4fb714f06abf32d84f79b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class101Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class102Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class102Impl.class deleted file mode 100644 index a828ebb47c7c01a83b07b23301167a864b2b294c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class102Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class103Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class103Impl.class deleted file mode 100644 index 860a7effabc8da328983fa7fc153fc9be9fa6603..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class103Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class104Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class104Impl.class deleted file mode 100644 index 6d75325ebe7e2335daf8cb7e9648d0c4d3f33ad7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class104Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class105Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class105Impl.class deleted file mode 100644 index a146add1200525102257531e048c93bcf9a57306..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class105Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class106Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class106Impl.class deleted file mode 100644 index d2447618e0fe625e0486ca1dee02e511449c3412..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class106Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class107Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class107Impl.class deleted file mode 100644 index 28c618cbc28b6180d4b5035a456bcbabff570223..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class107Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class108Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class108Impl.class deleted file mode 100644 index cd9c89b92bff079da566e375b1050ef109f10e4c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class108Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class109Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class109Impl.class deleted file mode 100644 index a81c0917e441f72d8474a1550df3f86cc1fd6887..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class109Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class110Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class110Impl.class deleted file mode 100644 index 32f9d13944535931c6b496473f51f5bba2d93cb6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class110Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class111Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class111Impl.class deleted file mode 100644 index f37c56d8f50e43aba8d8c73f6cef1175529e6061..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class111Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class112Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class112Impl.class deleted file mode 100644 index c39de960d93d1d6b42dcc9dc5723bfdf90d90ef9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class112Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class113Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class113Impl.class deleted file mode 100644 index 19281eb6055e4320783ec9912d2f2ba6e71bd74e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class113Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class114Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class114Impl.class deleted file mode 100644 index bb0107b42310ec471a999747954f1dedbaef6b7d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class114Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class115Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class115Impl.class deleted file mode 100644 index dc025fe1afe7aa8d301ef0a2538f2e0fdfbb3d62..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class115Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class116Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class116Impl.class deleted file mode 100644 index a0ff6fe1862457fe7020ac56dd270d017420033e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class116Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class117Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class117Impl.class deleted file mode 100644 index 1495ed6920e7fc555a52d2171fffc36ea48d1d7b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class117Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class118Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class118Impl.class deleted file mode 100644 index 976d233956a58854b40d9abe6eb62ecc015fcb62..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class118Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class119Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class119Impl.class deleted file mode 100644 index d1bba9c3569c1360951e4c540b4c4dca1e8ce824..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class119Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class120Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class120Impl.class deleted file mode 100644 index 24482bf30307c86fe913cbfd851b932c11257969..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class120Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class121Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class121Impl.class deleted file mode 100644 index c2def9d4f4f1ce57231ec4a5e16bee3590f98fd3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class121Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class122Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class122Impl.class deleted file mode 100644 index 8fae0330c473ef42b55e20f76e37dd3680320264..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class122Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class123Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class123Impl.class deleted file mode 100644 index f393c828b07914bca07e8967d1c6499a01b5e1ba..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class123Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class124Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class124Impl.class deleted file mode 100644 index b5bc142aefc22c8bff4501baae0e6fcb6fd3a59d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class124Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class125Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class125Impl.class deleted file mode 100644 index 8a9157ab4fcf41b003c2262ec40f57fe694aa4c8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class125Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class126Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class126Impl.class deleted file mode 100644 index 2a477e1641f0b8f71e7e98037153e16e4c898ec5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class126Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class127Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class127Impl.class deleted file mode 100644 index db9e9e3f57b8d0fb8c9d8ce01e7743630e816c2d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class127Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class128Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class128Impl.class deleted file mode 100644 index 2bc665647b6fbb643759aca3ce573c8dda501338..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class128Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class129Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class129Impl.class deleted file mode 100644 index 2303c761e685ea1ed164e7848dbefd0b2ba4ffbd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class129Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class130Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class130Impl.class deleted file mode 100644 index df9cd9b5a0db6bbe9e766cf1a859d7f5d9ebc4d9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class130Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class131Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class131Impl.class deleted file mode 100644 index 5824223f8ff6b0c44987222a4f7920e6b6189146..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class131Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class132Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class132Impl.class deleted file mode 100644 index 53074f81b6e4ab3be395a0bcc30fe1943482a2e1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class132Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class133Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class133Impl.class deleted file mode 100644 index d2f826e639e04451679b7ad303388e25a3d60238..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class133Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class134Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class134Impl.class deleted file mode 100644 index 7e29749d932515cd6c90f446c14b16528d812485..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class134Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class135Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class135Impl.class deleted file mode 100644 index d08790c3dd97864623fb531597efa7ce6287b291..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class135Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class136Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class136Impl.class deleted file mode 100644 index d9703470b520c079795d608045c9915f7c131123..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class136Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class137Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class137Impl.class deleted file mode 100644 index 88a865a34cf1f7cf3d05aea5bc3a313574784c6c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class137Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class138Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class138Impl.class deleted file mode 100644 index 84514d5e288595e50e41df866dde140e128a75e7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class138Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class139Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class139Impl.class deleted file mode 100644 index d00eaf161deb511f40a17d6dc3f0c880d79a448a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class139Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class86Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class86Impl.class deleted file mode 100644 index d24c5e41fcc99f58e4271693d593936df2c2e82f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class86Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class87Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class87Impl.class deleted file mode 100644 index 4add30b58dcf5cb5a5cfc03bf0f740758eca7f1e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class87Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class88Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class88Impl.class deleted file mode 100644 index 38ceeaa4979e916ff29e0ebdd3dee08490a7835a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class88Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class89Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class89Impl.class deleted file mode 100644 index 68d8171c1736d5d4c4ac6caef3ea4eaa45ef091c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class89Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class90Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class90Impl.class deleted file mode 100644 index fb9532f0d1782fe183b98fd9f783b79bd32183a7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class90Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class91Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class91Impl.class deleted file mode 100644 index ba99fd3b5ec90270bb555ed79d58501cedd99051..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class91Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class92Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class92Impl.class deleted file mode 100644 index caf3c6dbb1b370b264e6b6fc7c4b9f0a610e2e9f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class92Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class93Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class93Impl.class deleted file mode 100644 index bbf7576a234610ae14e58b152716eb5767e46a9e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class93Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class94Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class94Impl.class deleted file mode 100644 index 4f325a5263e01163cc38ff5344ea25bf9e6d3bed..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class94Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class95Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class95Impl.class deleted file mode 100644 index ac9017f26c811b2efdc6fd50761d282665e01279..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class95Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class96Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class96Impl.class deleted file mode 100644 index 17f5c7c67e134443a11b1625cd5fbea4778ae7bb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class96Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class97Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class97Impl.class deleted file mode 100644 index 92399b104984cf4f7afec37066144ee492bedf43..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class97Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class98Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class98Impl.class deleted file mode 100644 index dae4b046ac4f861a9a926d578af342d02b67990f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class98Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class99Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class99Impl.class deleted file mode 100644 index 4ba64b224d2ae7fa5544ac4abab3f9679f099ee7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Class99Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Mm3FactoryImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Mm3FactoryImpl.class deleted file mode 100644 index 874ae511e7d2eae7c27b418286c2030969e5e19d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Mm3FactoryImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Mm3PackageImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Mm3PackageImpl.class deleted file mode 100644 index e43876eea624ec959e984ad5a35c2a92422e17e8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/impl/Mm3PackageImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/util/Mm3AdapterFactory$1.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/util/Mm3AdapterFactory$1.class deleted file mode 100644 index 5bd2c515a70e9b711b4e7a85b8af0834e38e81e0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/util/Mm3AdapterFactory$1.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/util/Mm3AdapterFactory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/util/Mm3AdapterFactory.class deleted file mode 100644 index 456457e972e361a5114974f795947c95795cc9d8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/util/Mm3AdapterFactory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/util/Mm3Switch.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3/util/Mm3Switch.class deleted file mode 100644 index 63f9d919efd4f6eb62e571ddc28f3f679865d3a4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3/util/Mm3Switch.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class101DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class101DeepPImpl.class deleted file mode 100644 index 859c3afcbcb71123e99bd1728fa678e2d9a856d2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class101DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class102DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class102DeepPImpl.class deleted file mode 100644 index accd29caa3563d935d6dfd8d892cf1126f1eed4b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class102DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class103DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class103DeepPImpl.class deleted file mode 100644 index f1ecc2586d3e8aec6abb77329e4779827f339025..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class103DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class105DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class105DeepPImpl.class deleted file mode 100644 index 96605e63a44903eee9328fe0bf3a66ebc5276b2c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class105DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class106DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class106DeepPImpl.class deleted file mode 100644 index c4726382d1afefc099467d9f74dde72740b6b7e5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class106DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class107DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class107DeepPImpl.class deleted file mode 100644 index 0a675e927a48ebd438b6d02062cdeca6538d9284..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class107DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class108DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class108DeepPImpl.class deleted file mode 100644 index c740a01148fda15be3f11841340271772c4d3a5f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class108DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class110DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class110DeepPImpl.class deleted file mode 100644 index 6bde57ce80a5022010b1494d23c7e41e5d7b9996..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class110DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class111DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class111DeepPImpl.class deleted file mode 100644 index 1ff8d94be35abc0e7dfaa5617cfb7f0dbee2ee1a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class111DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class112DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class112DeepPImpl.class deleted file mode 100644 index 5aedb7746d690381955d59dcda21bc9331f8fa5f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class112DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class113DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class113DeepPImpl.class deleted file mode 100644 index 7e3547e629de839b4f1034ac7d5a971f58139653..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class113DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class114DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class114DeepPImpl.class deleted file mode 100644 index 9602419d433cf54846ffeb2d3611a06c8907e4ef..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class114DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class115DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class115DeepPImpl.class deleted file mode 100644 index 85814093ad8ea303cfa9d323fe6f8d6e743dce9e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class115DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class116DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class116DeepPImpl.class deleted file mode 100644 index 460aa175b6cc96f3f2569768d96d8f20cec8f50f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class116DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class118DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class118DeepPImpl.class deleted file mode 100644 index 163cd8bfcc867c9f25eeb15187f69b621ea55a61..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class118DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class119DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class119DeepPImpl.class deleted file mode 100644 index 50e6b8c9bd378d203870882f9429a3e4feaa3a42..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class119DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class120DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class120DeepPImpl.class deleted file mode 100644 index b3dbdc0c8d1d3565942e7e238b0ff06221b4141f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class120DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class121DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class121DeepPImpl.class deleted file mode 100644 index 23b420e4fdd703bb54c71037054084febcc89ce2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class121DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class122DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class122DeepPImpl.class deleted file mode 100644 index 1c204877eb09395d9b74855b77ba77e338c79d1d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class122DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class123DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class123DeepPImpl.class deleted file mode 100644 index 7b67346bb55c99feb102b342e653a98bc9db2538..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class123DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class124DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class124DeepPImpl.class deleted file mode 100644 index a7b2524026496b2d7834491d8eb870b9fdf0e6d2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class124DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class127DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class127DeepPImpl.class deleted file mode 100644 index add20773c8318f5929bf4a9aed65730c2ea6b403..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class127DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class128DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class128DeepPImpl.class deleted file mode 100644 index 0376cc2e05103b1ce9f36698aaa3f5e251c5d23d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class128DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class130DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class130DeepPImpl.class deleted file mode 100644 index ca7b5f04f56a99b5b01803c3ae60e57f37816267..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class130DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class132DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class132DeepPImpl.class deleted file mode 100644 index 91da152e11aa9d4f8eb40d5454dd20c03cc67c07..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class132DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class133DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class133DeepPImpl.class deleted file mode 100644 index c1492564ef7e8ac584032f4d210e2d1f90eae7ba..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class133DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class134DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class134DeepPImpl.class deleted file mode 100644 index 216ee44ec97b6acd7200ac69a04372982a8bc3a3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class134DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class135DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class135DeepPImpl.class deleted file mode 100644 index cd1122d9ed23686e556889ae5c98d14a148e54b0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class135DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class136DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class136DeepPImpl.class deleted file mode 100644 index fc38d3af6bfc84334bf99d8435d870bbaa2eb58a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class136DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class137DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class137DeepPImpl.class deleted file mode 100644 index c27ff19e8efb8b15290049c0e98b3fb187f07f3c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class137DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class139DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class139DeepPImpl.class deleted file mode 100644 index d9b0785f9990a6259b0e1e314ac066183ee1fbbc..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class139DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class87DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class87DeepPImpl.class deleted file mode 100644 index c373beb63a410da0e231b4c484c515cf1fbaccad..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class87DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class88DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class88DeepPImpl.class deleted file mode 100644 index 29614fd597344fadde84aa1ecfbf100fb6413568..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class88DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class89DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class89DeepPImpl.class deleted file mode 100644 index ad4980a2f68273532487255ae117f828c8e9791c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class89DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class91DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class91DeepPImpl.class deleted file mode 100644 index e5cfd4a7f0eb16a8ade30573f84e1f8f0994853d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class91DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class92DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class92DeepPImpl.class deleted file mode 100644 index 297aa1e0f21bc9f9ab1eecbcd5dddc6a7c7af5a4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class92DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class93DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class93DeepPImpl.class deleted file mode 100644 index bc31ab900191ac5aff437ceb229acac01c0c94c6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class93DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class94DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class94DeepPImpl.class deleted file mode 100644 index 4da078d2ed18da1a143eaba463c3fc7f588bd9d0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class94DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class95DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class95DeepPImpl.class deleted file mode 100644 index 29a3bfa16af905782ed23c874d82a5e08b91c913..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class95DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class96DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class96DeepPImpl.class deleted file mode 100644 index 9f04a293347646e9a5286c7d6c67c3b494531eb9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class96DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class97DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class97DeepPImpl.class deleted file mode 100644 index a3fbd630594aab99e7a794c922d4d3b9746c866d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class97DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class98DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class98DeepPImpl.class deleted file mode 100644 index b9a9de7d17d5ba0c629c24e0ecf2087be35884f3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class98DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class99DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class99DeepPImpl.class deleted file mode 100644 index 19de2215b103d0fcd92eac421546b2ef90e11ffe..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Class99DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Mm3DeepCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Mm3DeepCloningMaterial.class deleted file mode 100644 index eec665045b7d2c26d64f78bddec8080be15270df..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Mm3DeepCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Mm3DeepLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Mm3DeepLightCopier.class deleted file mode 100644 index 7afd2a2097e5574bf36ec279b8c84b1b8b578ff4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Mm3DeepLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Mm3DeepTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Mm3DeepTags.class deleted file mode 100644 index 2ce8a5da7d36c01a724b2303ab4e40d0d8041db6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3deep/Mm3DeepTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3modelcreator/Mm3ModelCreator.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3modelcreator/Mm3ModelCreator.class deleted file mode 100644 index 6352403f4be049d9bf9a23e87f20bbbb6a4f882c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3modelcreator/Mm3ModelCreator.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class101MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class101MutClassOnlyPImpl.class deleted file mode 100644 index 7856734832a6e2959c5048ee4de491401395fbcc..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class101MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class107MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class107MutClassOnlyPImpl.class deleted file mode 100644 index 5216139b61a62398eec7d1e4a7a429d1460844b1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class107MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class108MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class108MutClassOnlyPImpl.class deleted file mode 100644 index 882061e507aa7ad8a4cb3592952e11d4d7299bba..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class108MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class110MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class110MutClassOnlyPImpl.class deleted file mode 100644 index d84c7e32d268fc2b30ad61acddb29622d4f88c5c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class110MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class111MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class111MutClassOnlyPImpl.class deleted file mode 100644 index 50681bf66fb8a9b75c9a30446512b4545a2285df..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class111MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class112MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class112MutClassOnlyPImpl.class deleted file mode 100644 index 0d02b2fb48297b568ab3ab91b10fe74b658af2db..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class112MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class113MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class113MutClassOnlyPImpl.class deleted file mode 100644 index 2cb31344625fc052b47439dc0995410e4046f1ef..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class113MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class115MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class115MutClassOnlyPImpl.class deleted file mode 100644 index a940eef84187ecc0fcf5c6c4849f13c1e08a597a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class115MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class116MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class116MutClassOnlyPImpl.class deleted file mode 100644 index 7b3cd54dc59db3b471d3c45b546e01f35bb5dbab..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class116MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class117MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class117MutClassOnlyPImpl.class deleted file mode 100644 index f7d1eb7b9841dd20767b4b613100635d57f0d5b4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class117MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class119MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class119MutClassOnlyPImpl.class deleted file mode 100644 index a476c7eeda7999c52fcdc9e8440cb02af4e0bd00..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class119MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class121MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class121MutClassOnlyPImpl.class deleted file mode 100644 index 8ba514bcfae56ce696edcc7be60233c553687b05..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class121MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class122MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class122MutClassOnlyPImpl.class deleted file mode 100644 index 94cab7c8b7f0eaeffb3e2f6cd681516f8986ae59..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class122MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class127MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class127MutClassOnlyPImpl.class deleted file mode 100644 index 7246074757c96741a94a1913dd412c27389f4fb5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class127MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class130MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class130MutClassOnlyPImpl.class deleted file mode 100644 index e40e8effae7392511de2fd5caf2ca5fc69a638a2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class130MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class131MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class131MutClassOnlyPImpl.class deleted file mode 100644 index 8c799b0a34ee8f361cf8f4d4f4cbac5b2c23ff56..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class131MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class139MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class139MutClassOnlyPImpl.class deleted file mode 100644 index ed7ba504b87d3856124884d83322ca62f64d92ee..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class139MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class87MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class87MutClassOnlyPImpl.class deleted file mode 100644 index 186027bd97d57758de72a077ab8978b5964904ee..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class87MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class88MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class88MutClassOnlyPImpl.class deleted file mode 100644 index ff2029d1f87bc0532b68ab8f061546cba4ca657f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class88MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class90MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class90MutClassOnlyPImpl.class deleted file mode 100644 index 907d322cc8d4cdf7427affcc967da9317bdb44e8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class90MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class95MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class95MutClassOnlyPImpl.class deleted file mode 100644 index fcc08044938e581da4c469bd99d26460b70b4b02..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class95MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class99MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class99MutClassOnlyPImpl.class deleted file mode 100644 index bc1dcd2cd1d45cfce80b8b8d58cf922c64cfe40e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Class99MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Mm3MutClassOnlyCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Mm3MutClassOnlyCloningMaterial.class deleted file mode 100644 index 65f3b62ab779ccb065ae3b085c1f2199181183de..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Mm3MutClassOnlyCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Mm3MutClassOnlyLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Mm3MutClassOnlyLightCopier.class deleted file mode 100644 index 233beab1529c4d07f5d803c4f819809a7baa9bd7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Mm3MutClassOnlyLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Mm3MutClassOnlyTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Mm3MutClassOnlyTags.class deleted file mode 100644 index 5826041b02e0a5d464636d3900ae83019588d1f2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm3mutclassonly/Mm3MutClassOnlyTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class140.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class140.class deleted file mode 100644 index 61ad4dfcfac240c043aa0e0b32eb6c6356a3f6e0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class140.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class141.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class141.class deleted file mode 100644 index 3dc905c67fc97f73547e530877e3251818cfa632..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class141.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class142.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class142.class deleted file mode 100644 index 88802e2cec4beceac8ca7113a8dc311f774f2c23..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class142.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class143.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class143.class deleted file mode 100644 index 6d5edbb7c6d5a936bea2a961388c442f7f4de5e8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class143.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class144.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class144.class deleted file mode 100644 index 2b5ee9203f1c464139dd4e530a106be7a4b3a960..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class144.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class145.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class145.class deleted file mode 100644 index c8642aa3bc82936f24fc010da97bcd5b0d5aa60e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class145.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class146.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class146.class deleted file mode 100644 index 5c475f582f1b9a056e764e5551f863b37e26e227..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class146.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class147.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class147.class deleted file mode 100644 index 7ae657f2e00761f36c1374569da2b3acd9d0df5f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class147.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class148.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class148.class deleted file mode 100644 index 235f147452fe0766b9120cbec6a968d746d04857..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class148.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class149.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class149.class deleted file mode 100644 index ee9961294a949692abb7caf2d9425097235c6781..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class149.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class150.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class150.class deleted file mode 100644 index 33b4c842382c7e02938da47480be15250ea5b717..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class150.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class151.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class151.class deleted file mode 100644 index 63bd5dcb29c04e6567d4d9869e0bf9c5f1550b8c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class151.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class152.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class152.class deleted file mode 100644 index e20a7dd52d807432b8d55707627b4ff9f90ab76f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class152.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class153.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class153.class deleted file mode 100644 index d03c352f5e1e0b7b1fe20e7f0552fb57db7dcab4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class153.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class154.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class154.class deleted file mode 100644 index 261b0a7fdc3982efc7ae42ee0ddc55952a983947..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class154.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class155.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class155.class deleted file mode 100644 index 0c196d024c48512f23274636c405a89113dd6d6c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class155.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class156.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class156.class deleted file mode 100644 index 9da95e811ddf43b4e107682dc43d9417b4324bf5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class156.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class157.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class157.class deleted file mode 100644 index 7495c4a621440544371a995f912f8d7f71b18481..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class157.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class158.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class158.class deleted file mode 100644 index 285110f88510afd34c16d45fba650d62ce6c446f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class158.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class159.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class159.class deleted file mode 100644 index 66449419674f8a075c860208fe9ce5fcaf920763..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class159.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class160.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class160.class deleted file mode 100644 index e0ed3038a1ecefb06280109225c2976185c9910d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Class160.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Mm4Factory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Mm4Factory.class deleted file mode 100644 index 7cb173d2f976abaa6ad0ace221094524abd19d69..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Mm4Factory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Mm4Package$Literals.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Mm4Package$Literals.class deleted file mode 100644 index 0d55cf46ccee7620a7cd770b8f8dfa28defae767..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Mm4Package$Literals.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Mm4Package.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Mm4Package.class deleted file mode 100644 index 79d0a5e9428b5a3f89a85a938f70b577cd0f20b7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/Mm4Package.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class140Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class140Impl.class deleted file mode 100644 index 04a614b077352592d6d2475f2b9e589a8d5d7090..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class140Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class141Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class141Impl.class deleted file mode 100644 index 49972061ec65a91205d7d435c90254cece7cf3f7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class141Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class142Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class142Impl.class deleted file mode 100644 index 04c2d24785173b123e920c4c1273508195a2a34c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class142Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class143Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class143Impl.class deleted file mode 100644 index 67167ce533344639fe23b9f8833c4ea3bfaaca25..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class143Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class144Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class144Impl.class deleted file mode 100644 index 0d79c0f7aff0b454b339e11590474288a0bc5412..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class144Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class145Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class145Impl.class deleted file mode 100644 index 247631c605b2f181c06c3ac7807311df9c38c080..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class145Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class146Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class146Impl.class deleted file mode 100644 index 10d813eb51e4e62243f3022807c4f27624a305b7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class146Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class147Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class147Impl.class deleted file mode 100644 index 320464ab73a662bc0ed5a3a017711d1db5a76ef9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class147Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class148Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class148Impl.class deleted file mode 100644 index 83b9ff06686e332e35d8f585ba2150ee99d3ff66..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class148Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class149Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class149Impl.class deleted file mode 100644 index 7382911ea1072811e92953ff416a9fb9ad4caf61..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class149Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class150Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class150Impl.class deleted file mode 100644 index 900cfabcf404170c26934c93ba8f4c1fcdefce17..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class150Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class151Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class151Impl.class deleted file mode 100644 index 8cde16d1095eb80c0e20cc8ddb3e90e92f12728c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class151Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class152Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class152Impl.class deleted file mode 100644 index 59f1b8f4907800d9d4a4ca21ba81d65e5b22fab2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class152Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class153Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class153Impl.class deleted file mode 100644 index d308d207e12cff1581859eab1fd79097dcc48936..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class153Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class154Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class154Impl.class deleted file mode 100644 index aeb8c8a39e00a071d38fe93d20434201c5fdb8e4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class154Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class155Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class155Impl.class deleted file mode 100644 index 099d7370f462ae4d9ea590f20edcc45c4cdc0b41..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class155Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class156Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class156Impl.class deleted file mode 100644 index eff3de9e8b1be18bb13de13319a81ddc7e977550..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class156Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class157Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class157Impl.class deleted file mode 100644 index b4b5b87e0c86ea9a177fc494359b48933741245f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class157Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class158Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class158Impl.class deleted file mode 100644 index 59e456e23f22b1b2943ef12fe22fb08f2c13bbf5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class158Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class159Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class159Impl.class deleted file mode 100644 index 17ddcfe733002bcca16fbb9dce5c85aa7ae7848f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class159Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class160Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class160Impl.class deleted file mode 100644 index 74470eb037b2bb054cf11282f4620f6cf734074d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Class160Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Mm4FactoryImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Mm4FactoryImpl.class deleted file mode 100644 index 568352aa663386840629d0b6ddd2ec15e4b3c452..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Mm4FactoryImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Mm4PackageImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Mm4PackageImpl.class deleted file mode 100644 index d1212be5d7f58e3578300ea9a7c7dbde31fac817..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/impl/Mm4PackageImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/util/Mm4AdapterFactory$1.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/util/Mm4AdapterFactory$1.class deleted file mode 100644 index d0c8e99f7a758323df42cac6ee00dd4d0c173b72..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/util/Mm4AdapterFactory$1.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/util/Mm4AdapterFactory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/util/Mm4AdapterFactory.class deleted file mode 100644 index bd3537e891dcea5ddbb9e6586922050d36a4eeda..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/util/Mm4AdapterFactory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/util/Mm4Switch.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4/util/Mm4Switch.class deleted file mode 100644 index 700f38bc5d4e00f3a716ae689f10a2eb9f12d66c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4/util/Mm4Switch.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class140DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class140DeepPImpl.class deleted file mode 100644 index 4cde59533c7b920592d6ebc0752fcf47cbd0fd54..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class140DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class141DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class141DeepPImpl.class deleted file mode 100644 index 89baf27bfd1827e9f8877ded1eb825775877a7aa..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class141DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class142DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class142DeepPImpl.class deleted file mode 100644 index d14d36feb249c7bbd9633d14351a307b12141d2b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class142DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class143DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class143DeepPImpl.class deleted file mode 100644 index 96f0425856287615b756b1862c1b3d84b2efdcdd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class143DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class144DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class144DeepPImpl.class deleted file mode 100644 index fe81537bee7268fb3f4af6892346d0caa57663d7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class144DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class145DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class145DeepPImpl.class deleted file mode 100644 index 15f6c06dc8888a23e42b4f8ccd3ff62b1d0efdc6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class145DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class146DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class146DeepPImpl.class deleted file mode 100644 index c0334f4f187ec39b2761b545082305c0f3a03df8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class146DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class147DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class147DeepPImpl.class deleted file mode 100644 index bd192be0d02fa7e62a8a9f2f8c02d6ba726b38c0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class147DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class148DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class148DeepPImpl.class deleted file mode 100644 index 0260ccf6889db0122ee795cf72e04a2478e5870c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class148DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class149DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class149DeepPImpl.class deleted file mode 100644 index d173ab79f4af0c89fe116a60beee6ebd2c98c8fc..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class149DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class150DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class150DeepPImpl.class deleted file mode 100644 index df93eca57ec3078545c90624f016de7530a2e258..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class150DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class151DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class151DeepPImpl.class deleted file mode 100644 index 79058c5bf6563780cd68d5002e18408812b6a61a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class151DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class152DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class152DeepPImpl.class deleted file mode 100644 index b4b3bd92a370b12fe6bdc38bed57349eff705a71..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class152DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class153DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class153DeepPImpl.class deleted file mode 100644 index a7ceea91b9afe9918cef839e67cbfccbdfdca000..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class153DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class155DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class155DeepPImpl.class deleted file mode 100644 index 5c673639074b88af569379aa0d805907cf0c19ee..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class155DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class156DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class156DeepPImpl.class deleted file mode 100644 index 0fe8a6ba64cefdbc9890ef1c79195b6eaea8da1a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class156DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class157DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class157DeepPImpl.class deleted file mode 100644 index 4f7f66d10487038a07ca784dcf601dc8f053a950..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class157DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class158DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class158DeepPImpl.class deleted file mode 100644 index 5cc6974035eb2903b3a0205c1a8ebddcf688cd1c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class158DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class159DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class159DeepPImpl.class deleted file mode 100644 index 4f7ab7c0f65e4c6a19c5483f9a9ed227fe8578f7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class159DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class160DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class160DeepPImpl.class deleted file mode 100644 index b19918ea47ba33c3b5d3521edd45da0dbde83f9d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Class160DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Mm4DeepCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Mm4DeepCloningMaterial.class deleted file mode 100644 index 9ec235c213d040b17417135907b084ac517d47fa..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Mm4DeepCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Mm4DeepLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Mm4DeepLightCopier.class deleted file mode 100644 index e11ca7cdad59add883abdda04176654f0e092af5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Mm4DeepLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Mm4DeepTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Mm4DeepTags.class deleted file mode 100644 index a890fd56d135f3943cd5d186f61acd4c64cca670..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4deep/Mm4DeepTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4modelcreator/Mm4ModelCreator.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4modelcreator/Mm4ModelCreator.class deleted file mode 100644 index dbe649b6247d2487d1bde15ad460537c03a5cdea..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4modelcreator/Mm4ModelCreator.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class140MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class140MutClassOnlyPImpl.class deleted file mode 100644 index 3313916467a579969a7069537b921015b8cf253d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class140MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class141MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class141MutClassOnlyPImpl.class deleted file mode 100644 index 799fa9cc5eaeae0f4b936f885c1132ad168a4793..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class141MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class142MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class142MutClassOnlyPImpl.class deleted file mode 100644 index e4f19bb2f5a4610efc6379a3c2e3488608c77085..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class142MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class143MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class143MutClassOnlyPImpl.class deleted file mode 100644 index fe3a81e9f2aea62791f68d9f4d167b510d2e1702..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class143MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class144MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class144MutClassOnlyPImpl.class deleted file mode 100644 index fdf71fd3674c80678b0fdff6f6b1f99b1c70fd52..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class144MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class145MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class145MutClassOnlyPImpl.class deleted file mode 100644 index 255226a6a0fecabae3f424d5c9930d963a3cca91..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class145MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class147MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class147MutClassOnlyPImpl.class deleted file mode 100644 index d5c3c43694ef8cde34e00089ab875649d4b3cc38..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class147MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class148MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class148MutClassOnlyPImpl.class deleted file mode 100644 index 4c4ce5b061a1839629093ec70b04022455d59e2c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class148MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class149MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class149MutClassOnlyPImpl.class deleted file mode 100644 index ed3350b7216e40a24002415bc984d2e62962f9a6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class149MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class150MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class150MutClassOnlyPImpl.class deleted file mode 100644 index 6b7b953f5d0626021a35bdda031b425a0ac5c8d3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class150MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class151MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class151MutClassOnlyPImpl.class deleted file mode 100644 index 6732d23e5b736b19f7fa19cdf40edb2388c70b88..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class151MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class152MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class152MutClassOnlyPImpl.class deleted file mode 100644 index f74c6c8d74b1e028a0bca72e28d4eb128000db99..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class152MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class153MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class153MutClassOnlyPImpl.class deleted file mode 100644 index 5e71773feceb08e996888afa8f5c92dccd42bad0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class153MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class156MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class156MutClassOnlyPImpl.class deleted file mode 100644 index a73fa316ae50f0a9ea78efc10b541328fab713f9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class156MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class157MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class157MutClassOnlyPImpl.class deleted file mode 100644 index 4e7a7f0475f02c865912493a6b003df6b1158ad6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class157MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class158MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class158MutClassOnlyPImpl.class deleted file mode 100644 index ba912f4b7e2d8b3241625b85c07ff032489f45db..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class158MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class159MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class159MutClassOnlyPImpl.class deleted file mode 100644 index aae73efd692b3bbdb1b4a9b748bed21c409704c4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Class159MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Mm4MutClassOnlyCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Mm4MutClassOnlyCloningMaterial.class deleted file mode 100644 index 3f9917b60842b9f758802a010d06131aa1785369..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Mm4MutClassOnlyCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Mm4MutClassOnlyLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Mm4MutClassOnlyLightCopier.class deleted file mode 100644 index 5a40d4e4b6ef3730754993155245fe65533f60d5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Mm4MutClassOnlyLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Mm4MutClassOnlyTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Mm4MutClassOnlyTags.class deleted file mode 100644 index 1678f2e408e33516e2bb919d85b511631f46cab2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm4mutclassonly/Mm4MutClassOnlyTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class161.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class161.class deleted file mode 100644 index 11e51adf431ed73d4a7d6173057c06f136ab27e3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class161.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class162.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class162.class deleted file mode 100644 index c5ae0317fbacc12c416fa047ab1da3969c95f7c5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class162.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class163.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class163.class deleted file mode 100644 index 29ccf13fa1123d98198ff8bf8ee33fa30862ffb6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class163.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class164.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class164.class deleted file mode 100644 index f0bcb36747c66f8a602c0c2a2e67ee8b5bdc0225..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class164.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class165.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class165.class deleted file mode 100644 index 4ce81d9ccbb0680d5f207829be4ca0e4fca90a55..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class165.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class166.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class166.class deleted file mode 100644 index e91c940c4b916cea0d39eb4ec9cfedb5d0e5c685..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class166.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class167.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class167.class deleted file mode 100644 index e46956a21b35ac6b9c18aa3eb84b76c487874baa..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class167.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class168.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class168.class deleted file mode 100644 index b43e6819b80c1c87362f0fa8cdbb2ad68395b7f8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class168.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class169.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class169.class deleted file mode 100644 index 89468a2562ad90b416efc0c87bd96083ba09d299..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class169.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class170.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class170.class deleted file mode 100644 index a9485fd2f61ba55efb6d1a0d3605d9bf2a16d376..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class170.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class171.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class171.class deleted file mode 100644 index 0a4df264ebfba8e30318e852b163f14c2f4ce23b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class171.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class172.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class172.class deleted file mode 100644 index 0a4e71cc11b02b23c0fd1e1d25000eeb99439964..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class172.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class173.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class173.class deleted file mode 100644 index 584546a5e722dd084c5814826c6e5eea32e25265..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class173.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class174.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class174.class deleted file mode 100644 index 2e66f9f2a7e68d1623db5d119f1ddcdd26f03f9d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class174.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class175.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class175.class deleted file mode 100644 index e926996227f7f7306421eebc082c637c23ececfa..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class175.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class176.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class176.class deleted file mode 100644 index c374e8093887f1a4e06c3bece97526e9f0a886db..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class176.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class177.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class177.class deleted file mode 100644 index 9be41120cfdb53e175f4419ec74423b4ea33573f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class177.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class178.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class178.class deleted file mode 100644 index d92ccaa7e4a16d9fa66ccbc89ad6868a8c25b201..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class178.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class179.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class179.class deleted file mode 100644 index 75efe1940c70001a0f469cd2b4bb791322dceeee..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class179.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class180.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class180.class deleted file mode 100644 index 09e7bdc33fffff8f337ec324e08b4571c4fbbe33..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class180.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class181.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class181.class deleted file mode 100644 index 7d9e719ce50038d3fbd3ea7c2a223c9ddf0d7586..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class181.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class182.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class182.class deleted file mode 100644 index a53035c43204067cbd70e634c1e72f277ce85f50..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class182.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class183.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class183.class deleted file mode 100644 index 386675cd0f15da09848c8d1fd76f1191fdd057bc..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class183.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class184.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class184.class deleted file mode 100644 index 9a54bb11fa30e38b5e01740df38f55df0881a5d5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class184.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class185.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class185.class deleted file mode 100644 index 05656fc0f3b52a8c9fff4dd98cec94f932bf08c7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class185.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class186.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class186.class deleted file mode 100644 index 7d729ee2de328260a5564cc188419cc0cb5d01fd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class186.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class187.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class187.class deleted file mode 100644 index ec2e1d915212373c4391c203317995e91fa3229d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class187.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class188.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class188.class deleted file mode 100644 index 82805f8426c9c94feeaae9ebc29647aa5b36edcd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class188.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class189.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class189.class deleted file mode 100644 index 6c0a9bc0452a05554e60cff61d60d860da95fdb7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class189.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class190.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class190.class deleted file mode 100644 index d8b01b1bc803f9f8997542b20e9833b73024d60a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class190.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class191.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class191.class deleted file mode 100644 index 34b4a73d5c5cb0af46b6e2dd26bdc1bcc08a436e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class191.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class192.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class192.class deleted file mode 100644 index 6272851b148069478bd35c38522937708a0f98f5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class192.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class193.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class193.class deleted file mode 100644 index 5f1100725e530962771de3df8596954e5fc9cd8b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class193.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class194.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class194.class deleted file mode 100644 index 1d9edaa47914a0537ae9c2ae77010422cc3d8fc3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class194.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class195.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class195.class deleted file mode 100644 index 69e5fa14d0a47a52410acd54e5ca9020b450cf87..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class195.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class196.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class196.class deleted file mode 100644 index d2a281754ab38b01c814525b221110fe97dd27fb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class196.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class197.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class197.class deleted file mode 100644 index 821bae96540e7b5ded3fd8783444ecf319a7749a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class197.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class198.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class198.class deleted file mode 100644 index 5912492975b8a38692af3d609e4f49261cc6dffc..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class198.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class199.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class199.class deleted file mode 100644 index f8089ac66108d7b0940d47743b774a13100ec694..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class199.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class200.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class200.class deleted file mode 100644 index b4addf9b8e558c7defb6803e2441ba52aface6e4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class200.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class201.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class201.class deleted file mode 100644 index 268a94a56018cf4b9022b7ce3535fe43e065d33f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class201.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class202.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class202.class deleted file mode 100644 index a1ee2e289ba38e04e04515d57159b28e8ab43483..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class202.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class203.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class203.class deleted file mode 100644 index b950229788b0ebda5478e6e090151d1d50f7fa09..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class203.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class204.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class204.class deleted file mode 100644 index 729787726c57900101779871106f89b5dbc90449..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class204.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class205.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class205.class deleted file mode 100644 index 14476d63382c9e1c9735f1125db8d8637929b0a3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class205.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class206.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class206.class deleted file mode 100644 index 7e3e27972a2189cd2f7b9f720fc2b869085c5f75..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class206.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class207.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class207.class deleted file mode 100644 index ca7d512002a1a589263e636c8aad872e1549e5b2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class207.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class208.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class208.class deleted file mode 100644 index e50fdbe81880f63419b1edd9456572f5e6ba5118..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class208.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class209.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class209.class deleted file mode 100644 index 58d2a8c650f78962bb178d845913907898f893bf..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class209.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class210.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class210.class deleted file mode 100644 index bf399ba9b6ee7864c2ec6c6ec014c845f934c967..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class210.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class211.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class211.class deleted file mode 100644 index c04d83bcfa3274a4e5b37a6f76c2caa43d0bf054..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class211.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class212.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class212.class deleted file mode 100644 index 940d86e77947d8a1b5ca75638316478eef7a973f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class212.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class213.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class213.class deleted file mode 100644 index da9e35ad2530802dbd675c93b8ef31adf219e3cb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class213.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class214.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class214.class deleted file mode 100644 index cf2b613226f2f461d3632735ae0a3b96c458b808..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class214.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class215.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class215.class deleted file mode 100644 index a9ee33c757355ec531e79f6fa8302576bf9ea697..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class215.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class216.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class216.class deleted file mode 100644 index fd6225cdb503fb9275e405a43f5bc902b4324de7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class216.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class217.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class217.class deleted file mode 100644 index 43b588bc8656d26d2df3c5b55972d245e7c6c9dd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class217.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class218.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class218.class deleted file mode 100644 index be5c3a646b4a5c1482abc312fd4b1aa8b0a08abf..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class218.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class219.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class219.class deleted file mode 100644 index f7f2fbf91b47e1d7560559542243d65cd7f08d13..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class219.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class220.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class220.class deleted file mode 100644 index 2856755f833b781c76d149ee6c4fa6f10dab7510..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class220.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class221.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class221.class deleted file mode 100644 index bdab457b6d8baddcd2d57a9b9c5a1f47f2493910..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class221.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class222.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class222.class deleted file mode 100644 index 45af574e68eec2e4cac535d3a4cd320e5cea5b61..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class222.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class223.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class223.class deleted file mode 100644 index 216b9df253845cce1cbf1772b1e75db024de6db2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class223.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class224.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class224.class deleted file mode 100644 index aba5e362bc875d714bd698050c4c02b82414d521..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class224.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class225.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class225.class deleted file mode 100644 index 1f269c6afc8a36c02c0f317d3d38705715bdfb45..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class225.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class226.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class226.class deleted file mode 100644 index 01cebe31bfc97a85926774646db295fb5bbe1e11..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class226.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class227.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class227.class deleted file mode 100644 index cfc958f715c12edefcfe06abeb228aab8dc04c9d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class227.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class228.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class228.class deleted file mode 100644 index 75afd7d1d7909668bf4b5220c72114dd1610a4b9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class228.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class229.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class229.class deleted file mode 100644 index a01441b613071d113c50fa9c9110c784a1fe8ae3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class229.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class230.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class230.class deleted file mode 100644 index d4683301e2f04e39a96a2c82975d68340eac80db..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class230.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class231.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class231.class deleted file mode 100644 index 006e15e3d29e36e8ae553b20db6ec31558b40d01..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class231.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class232.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class232.class deleted file mode 100644 index dab6229189d622f8231c93417830e1358f490b87..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class232.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class233.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class233.class deleted file mode 100644 index d0964c4dfa2f27374a55b90e4f4f2e88202e0b7a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class233.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class234.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class234.class deleted file mode 100644 index 75960eaa79a6ce66ecdbd1f4405c827f8b1ab7e8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class234.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class235.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class235.class deleted file mode 100644 index 37cfe52d89b6270d1aa7f19cd98b752d08abed38..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class235.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class236.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class236.class deleted file mode 100644 index 29a84804d63eb66112f09f1f06cc5ecdae308fc1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class236.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class237.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class237.class deleted file mode 100644 index 5746ddcd1d9124c8dd81635c9accd84c26ef3eea..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class237.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class238.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class238.class deleted file mode 100644 index 4a1bb1e46b292268c0ed422527ecd5d7ac068927..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class238.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class239.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class239.class deleted file mode 100644 index 4e3a11147229187bce1687d28576a11d94ab8f3b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class239.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class240.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class240.class deleted file mode 100644 index de5209431ef991df1f36bac8094a33b66dc2df6b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Class240.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Mm5Factory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Mm5Factory.class deleted file mode 100644 index 92444a8379fb4c15d46e23ea7e24c327ea67e5fe..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Mm5Factory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Mm5Package$Literals.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Mm5Package$Literals.class deleted file mode 100644 index ebeb3b45f2f23c75d1e2522dd8ea07a3f48970bd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Mm5Package$Literals.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Mm5Package.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Mm5Package.class deleted file mode 100644 index b7f7ad9009b41d43c1036b3da281fbff45d3b1ad..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/Mm5Package.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class161Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class161Impl.class deleted file mode 100644 index fd431ca50c538889437e1ff68e1f0e80bab376a3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class161Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class162Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class162Impl.class deleted file mode 100644 index 04794636f702ee52017cbed958f07ad77d337fe4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class162Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class163Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class163Impl.class deleted file mode 100644 index 3f6a58437cca56699606cf9a98ea11593fbca55a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class163Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class164Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class164Impl.class deleted file mode 100644 index 52fd6c5301252d90c3e04c9a59f2e78703bb87e8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class164Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class165Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class165Impl.class deleted file mode 100644 index 9488710ea0b4928794fefcbf57901eac349ff1e9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class165Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class166Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class166Impl.class deleted file mode 100644 index 6744cac83105e0f11b03bbfe467853f4472e9057..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class166Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class167Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class167Impl.class deleted file mode 100644 index 28db4c85da57e3f4369d51d53536f1d8d02eb761..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class167Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class168Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class168Impl.class deleted file mode 100644 index 6f34598e8ccaf3e0ffdfaad8b12d7e06c3d6b2b0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class168Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class169Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class169Impl.class deleted file mode 100644 index 783235e67c0f7e1b4f88df1fb09cbbfbcfe4fa76..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class169Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class170Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class170Impl.class deleted file mode 100644 index b066adf27fee2953fb92f28d6efaef476564d0ee..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class170Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class171Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class171Impl.class deleted file mode 100644 index e093cc82a7424ffaebc49ee49519bf356b46fb0d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class171Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class172Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class172Impl.class deleted file mode 100644 index 3a8f5f497a8d2ac12c18864c60e3757f8f9de7f6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class172Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class173Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class173Impl.class deleted file mode 100644 index 74b1cc9e386e2e950bf3207db545789243416d7b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class173Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class174Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class174Impl.class deleted file mode 100644 index 00c239cbe4f01b067bfa542d0449416778cf0568..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class174Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class175Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class175Impl.class deleted file mode 100644 index 10bf1620da619ccc4cdee74427b7f917a4a0b50d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class175Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class176Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class176Impl.class deleted file mode 100644 index a0caa52f1f3d9e47f329dcef6183034450b372be..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class176Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class177Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class177Impl.class deleted file mode 100644 index 4f44e048ffb31a4135c9a1ac2a80d5bd728b4586..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class177Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class178Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class178Impl.class deleted file mode 100644 index 7bf8f014aeb7dcd1e8fc6a0d6a51e339e94bfb3d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class178Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class179Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class179Impl.class deleted file mode 100644 index eab400f5f63260330c789681f7e6d0aa30659e0d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class179Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class180Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class180Impl.class deleted file mode 100644 index b24ab4a9ca6e3ebf4af4836bbfac941f42bb2376..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class180Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class181Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class181Impl.class deleted file mode 100644 index 46c171dd28416f21b5f057050829275f8b8d4509..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class181Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class182Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class182Impl.class deleted file mode 100644 index e8f383b947fcc23f118c5721be47ac00aa3f5113..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class182Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class183Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class183Impl.class deleted file mode 100644 index 74a8ba9298b148c254938021330ea076449b2206..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class183Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class184Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class184Impl.class deleted file mode 100644 index c1197c893ff73d5b1df18d2ce23393e8abad7cbd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class184Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class185Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class185Impl.class deleted file mode 100644 index 46fd5161efaad12a520946cbb78aadc0f4d391f5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class185Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class186Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class186Impl.class deleted file mode 100644 index 230d858bf6dbff029bd792700ccab199caca3c3c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class186Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class187Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class187Impl.class deleted file mode 100644 index 3bc29189c8a0ac5ab6863858b73990944be29cdf..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class187Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class188Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class188Impl.class deleted file mode 100644 index 08fc90fe7c4bc0215cd77a751f0ed0db84cfd2cd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class188Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class189Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class189Impl.class deleted file mode 100644 index ccf7cc925ab421784ba6c8e19180d34a58c900ca..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class189Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class190Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class190Impl.class deleted file mode 100644 index 037e52c1e61af1c646b503b62d696ed00410c62e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class190Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class191Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class191Impl.class deleted file mode 100644 index 13041e1a3fdd1851890a1a39a19edfb3dfd6edf8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class191Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class192Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class192Impl.class deleted file mode 100644 index 4175eea5c911226ca40de37a9a21dc0280e25f8e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class192Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class193Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class193Impl.class deleted file mode 100644 index a6b998dfbee4d73bcc726a880c7e323cbd70386f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class193Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class194Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class194Impl.class deleted file mode 100644 index 11a0a2d4cc0a707cce26a732a5c784b55574b57c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class194Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class195Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class195Impl.class deleted file mode 100644 index e20e1aba21527eeaa2285e63937e9d5a8651245c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class195Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class196Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class196Impl.class deleted file mode 100644 index 187a184b116a758cd22e124fbb1ab71c116b6174..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class196Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class197Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class197Impl.class deleted file mode 100644 index 81c0461795db831bc43c9d98d9b104d84b4e9c43..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class197Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class198Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class198Impl.class deleted file mode 100644 index 2c309bd2c53457761ea6a3079b851bcc3682ff6d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class198Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class199Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class199Impl.class deleted file mode 100644 index 6c2dcf3ec1d34a6be742e7795c366492b35c5cf3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class199Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class200Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class200Impl.class deleted file mode 100644 index bf35274162d70d90f0cf36b2ad1bd42fa4f339db..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class200Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class201Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class201Impl.class deleted file mode 100644 index eaf303225c8d5dcd136b4ceb914dc73beb53051b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class201Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class202Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class202Impl.class deleted file mode 100644 index 6a54d0307fcf41ea625cc30cb688875b87f0ee3e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class202Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class203Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class203Impl.class deleted file mode 100644 index eec1d9cf1151b6e804dad47a3a70a19d14636817..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class203Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class204Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class204Impl.class deleted file mode 100644 index 225bcbe4fa1561ae0e7da7b5de4245556e6d565c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class204Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class205Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class205Impl.class deleted file mode 100644 index a7d40a0bd29e37b7c2a10482b239d8ec64c88567..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class205Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class206Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class206Impl.class deleted file mode 100644 index d0689b555d3a81fcb4649a5ca28d7bfbd76ccae1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class206Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class207Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class207Impl.class deleted file mode 100644 index de415de5097ef089b22c0265d3378a0b8f69a43b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class207Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class208Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class208Impl.class deleted file mode 100644 index 96e60526e6edb13e435651f5e34add89d792da7b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class208Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class209Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class209Impl.class deleted file mode 100644 index f41569007b03525ef87030b6302715a321c29aca..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class209Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class210Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class210Impl.class deleted file mode 100644 index 92654a04018d5c670433f7ff00e6885328b7582c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class210Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class211Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class211Impl.class deleted file mode 100644 index a096814b54b8e93ce079a80a2d96032796074c41..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class211Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class212Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class212Impl.class deleted file mode 100644 index 271b0ce68d43be1827019f66f1c66fa18f40242a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class212Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class213Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class213Impl.class deleted file mode 100644 index 61ee6c9886ecd9bc56fa218afb926eaf6c13453a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class213Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class214Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class214Impl.class deleted file mode 100644 index 3bb2f5835361f7de30c6d86c11f11454198169a8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class214Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class215Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class215Impl.class deleted file mode 100644 index 40442b2940fb5b2445172838c5e6ae0d1b8ab9f1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class215Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class216Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class216Impl.class deleted file mode 100644 index cd75c31ab672287a15ac8ae3cdf05bbe50b677d4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class216Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class217Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class217Impl.class deleted file mode 100644 index c8a389d5cab600afab5ee1a33d30de676a700ec3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class217Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class218Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class218Impl.class deleted file mode 100644 index dcba4a2c84f0aa0ef67fac0e1ce4feb81a07c0f7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class218Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class219Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class219Impl.class deleted file mode 100644 index d1cc6a6e6fc2343c65e4d0a80b5588711cbf719e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class219Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class220Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class220Impl.class deleted file mode 100644 index 440ab5c6d3f3c9ed52b0d3cb2027df386785e87c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class220Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class221Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class221Impl.class deleted file mode 100644 index 81894c4cae9e80cf299d674a6b1de5ad5630008a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class221Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class222Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class222Impl.class deleted file mode 100644 index d3e87ecfa7d42ac290514785e05285a418f23497..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class222Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class223Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class223Impl.class deleted file mode 100644 index ba1f3ac0bf7cd857e55cde2ca7f582441602ac1a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class223Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class224Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class224Impl.class deleted file mode 100644 index e85d868073e48dec368ef9ea9c77aa76aa916815..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class224Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class225Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class225Impl.class deleted file mode 100644 index 6c71f03e2f777da62283d28c0b0f08d85dc2846b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class225Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class226Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class226Impl.class deleted file mode 100644 index 4e0378c75b2a8b984cf02202c1d50ff94071c04d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class226Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class227Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class227Impl.class deleted file mode 100644 index a69b914034abb11f55002f2d7bfc8d3e8a4ec5dd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class227Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class228Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class228Impl.class deleted file mode 100644 index cfd67be108032229f80a166b42e5e2feb6c5467d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class228Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class229Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class229Impl.class deleted file mode 100644 index 0b44f468d13d541bbf9b91c75f1c1e7fd2b5a0f0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class229Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class230Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class230Impl.class deleted file mode 100644 index 84b658f6a91f7df84c0b0f34675271a1493974bd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class230Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class231Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class231Impl.class deleted file mode 100644 index 72dd4409a9ce001f70da0a2a7fae215e7b5498f4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class231Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class232Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class232Impl.class deleted file mode 100644 index 87ab51a2524be3c8baaf7183291eac24bc054be3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class232Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class233Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class233Impl.class deleted file mode 100644 index 514672fe775e44a98fe37dba68f30ad12c5a3870..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class233Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class234Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class234Impl.class deleted file mode 100644 index 5287230519cc3c1689f5ebbe5b4a50c48b2cef2c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class234Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class235Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class235Impl.class deleted file mode 100644 index dcc794aea5fbb23f1ec9196b653842cf0880949b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class235Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class236Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class236Impl.class deleted file mode 100644 index 50d5755973f124fa8ed58ad996303aa46c9be167..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class236Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class237Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class237Impl.class deleted file mode 100644 index 2eb12b8d3d0399f3bcef74f32f9d332b99181e63..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class237Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class238Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class238Impl.class deleted file mode 100644 index c77e1eb6c9e12713885098fa759add77eb8aad3b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class238Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class239Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class239Impl.class deleted file mode 100644 index fa4a708853cbd172259875376318f1349081100e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class239Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class240Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class240Impl.class deleted file mode 100644 index 71fe2dbee4a417149ae11646b3767d0bd96f86df..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Class240Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Mm5FactoryImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Mm5FactoryImpl.class deleted file mode 100644 index f0317e80fb04fc062f9e7a9b0c686833cfe57934..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Mm5FactoryImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Mm5PackageImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Mm5PackageImpl.class deleted file mode 100644 index 7330904c2a901d4cd2a458a801c70f4254067e14..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/impl/Mm5PackageImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/util/Mm5AdapterFactory$1.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/util/Mm5AdapterFactory$1.class deleted file mode 100644 index b9e2f11b762b2c092b1b0254517677cb821a8336..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/util/Mm5AdapterFactory$1.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/util/Mm5AdapterFactory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/util/Mm5AdapterFactory.class deleted file mode 100644 index 74d35bcf640c8e27b32f4b1a31c24699d31f5682..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/util/Mm5AdapterFactory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/util/Mm5Switch.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5/util/Mm5Switch.class deleted file mode 100644 index 0352cc22519ad18ab83793bcf8a765b4d1c92653..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5/util/Mm5Switch.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class162DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class162DeepPImpl.class deleted file mode 100644 index 865989fda0fa978faac06ac0a57c6062cce43950..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class162DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class164DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class164DeepPImpl.class deleted file mode 100644 index 1490bfed404218a14ab0439978b055f9ecb30939..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class164DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class165DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class165DeepPImpl.class deleted file mode 100644 index 87b8e88a45e645c329a8dd2a72528bc52c96aeeb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class165DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class166DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class166DeepPImpl.class deleted file mode 100644 index dd8b025c828849c87e21725c6e1ec931eb6ff9f6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class166DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class168DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class168DeepPImpl.class deleted file mode 100644 index d3cd55327877e4116ef5b88ab78deac29349f442..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class168DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class169DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class169DeepPImpl.class deleted file mode 100644 index b3b5fee369187df1ca64e6278e5091dc4ab05b96..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class169DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class171DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class171DeepPImpl.class deleted file mode 100644 index 71220bcaeb36a55209df81fc9d589d257aee99f9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class171DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class172DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class172DeepPImpl.class deleted file mode 100644 index b450f9b88d2f765ff90252c0db9aea3e39fed002..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class172DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class173DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class173DeepPImpl.class deleted file mode 100644 index 767d449a7f1946ae530d8fba719ee4ddfbda935c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class173DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class174DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class174DeepPImpl.class deleted file mode 100644 index 4e68677b59d25aa29d147e52f15e523df225b1c7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class174DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class175DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class175DeepPImpl.class deleted file mode 100644 index 6cf681144d2d5d295d282825eef432755a5fbc3e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class175DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class176DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class176DeepPImpl.class deleted file mode 100644 index b23b6821b4072028c7ce2fcbe66e80063a6e202a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class176DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class177DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class177DeepPImpl.class deleted file mode 100644 index f28030fd66955bb2302ba1a6b75ce4e8801224bf..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class177DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class178DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class178DeepPImpl.class deleted file mode 100644 index e0542c5edf9e320d3149e24fe778a05cf9e2082b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class178DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class179DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class179DeepPImpl.class deleted file mode 100644 index 07728789ed92b5ec1fb79c302ca2cc433293bbb0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class179DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class180DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class180DeepPImpl.class deleted file mode 100644 index 92f56c69906cb0a28035d5e7fc18d905395feed6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class180DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class181DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class181DeepPImpl.class deleted file mode 100644 index f0a629e0baf296d52a5bcb873264e5df5cd63596..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class181DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class182DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class182DeepPImpl.class deleted file mode 100644 index f9cb2a3f7b47d860f74666dfcc8e4da498f520a9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class182DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class184DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class184DeepPImpl.class deleted file mode 100644 index 1e4ff06f5e7ccb01f550dc275680aa5aa88ec60c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class184DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class185DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class185DeepPImpl.class deleted file mode 100644 index 146df6f1e9c2c2f10848dc54a81330a72af0ca33..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class185DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class186DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class186DeepPImpl.class deleted file mode 100644 index 680a9b73cbcea2c866fec24017fd83a3dbca2e9d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class186DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class187DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class187DeepPImpl.class deleted file mode 100644 index 5c9d6f6df9ebd03191831d2c02e8eb8d97b078d6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class187DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class188DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class188DeepPImpl.class deleted file mode 100644 index a43a35eacf2cd3cbb3f4d09299dcc12fb1b9fb9b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class188DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class190DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class190DeepPImpl.class deleted file mode 100644 index b3317f1f708cd4298aea74c9fbc6249025c3acf9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class190DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class191DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class191DeepPImpl.class deleted file mode 100644 index 688e75fdd371cd8bf588dc7216ed5f4af184f287..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class191DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class192DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class192DeepPImpl.class deleted file mode 100644 index 457d0f262354514a0a591bd79ee291b1b005d416..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class192DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class193DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class193DeepPImpl.class deleted file mode 100644 index 3f80dcb186ffa9b37d2408a0369c5bde13721d27..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class193DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class194DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class194DeepPImpl.class deleted file mode 100644 index 54586c81618f51c2252b363689b6cc071176a9a8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class194DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class195DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class195DeepPImpl.class deleted file mode 100644 index 47437bd62af78181eabd6d1b3d7e8e3ca38f8460..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class195DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class196DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class196DeepPImpl.class deleted file mode 100644 index e6c02bee0d6a1572fde453ad0f24bfe99f300a0b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class196DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class197DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class197DeepPImpl.class deleted file mode 100644 index c2d288f72ff6a9d6e598649d884f54511e783e52..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class197DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class198DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class198DeepPImpl.class deleted file mode 100644 index b6f55be79d2e801ee43642aa8ddbfeb81bfddcb9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class198DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class199DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class199DeepPImpl.class deleted file mode 100644 index 0f19073d984cffdfd21cc655fbd3d5cabee08c19..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class199DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class202DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class202DeepPImpl.class deleted file mode 100644 index bafe4d9682f3c8fe48f0c973053db95480f6d413..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class202DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class205DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class205DeepPImpl.class deleted file mode 100644 index 7a9f90df612b2839666bdde0022e046a082a300a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class205DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class206DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class206DeepPImpl.class deleted file mode 100644 index 49247a01f8587df9174b467e652136bacdd462ca..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class206DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class207DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class207DeepPImpl.class deleted file mode 100644 index a9724980daf3f4dcc87bc1de68879a839b3139e8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class207DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class208DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class208DeepPImpl.class deleted file mode 100644 index 5944e3c2b11cb1b096707d33149aaaa1657d8cc5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class208DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class209DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class209DeepPImpl.class deleted file mode 100644 index bf31c38ba0fa771485c6e0d96d8d2e8d69804ed4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class209DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class210DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class210DeepPImpl.class deleted file mode 100644 index d19b16da2b9854c0723d7bd3db670b977ef1f218..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class210DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class212DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class212DeepPImpl.class deleted file mode 100644 index 153c4df9e08d91e3c60be27be92a23f4975d5606..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class212DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class214DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class214DeepPImpl.class deleted file mode 100644 index e46247dd715f7dee30f368be0eb1348042623cd3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class214DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class215DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class215DeepPImpl.class deleted file mode 100644 index 56ca007611ca8155e15c6c761f1e154a3b634898..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class215DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class216DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class216DeepPImpl.class deleted file mode 100644 index 534ba111ec9395658c497d960e82957269fedb12..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class216DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class217DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class217DeepPImpl.class deleted file mode 100644 index 3f371f109a75d97809cd4f05d9e87a216364ba3c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class217DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class218DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class218DeepPImpl.class deleted file mode 100644 index dfb5913085c8fa327534a174177bb31983f543ae..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class218DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class219DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class219DeepPImpl.class deleted file mode 100644 index 2637321f94dd5bbdd1e1c5a2da00be0e49696c31..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class219DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class221DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class221DeepPImpl.class deleted file mode 100644 index c0421d3fd513c960528597ae2351376d2ed8328b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class221DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class222DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class222DeepPImpl.class deleted file mode 100644 index ef2d5ac7873681f119c80fb665a57e358f551af9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class222DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class223DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class223DeepPImpl.class deleted file mode 100644 index 2217bd14065ddccfdc8b6006b8a9885b8941dc65..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class223DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class225DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class225DeepPImpl.class deleted file mode 100644 index 48fd4479087444b2b3cd834c697737ee1fe36532..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class225DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class227DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class227DeepPImpl.class deleted file mode 100644 index affaf41c9e045fff8c36945c9de14e6cd417cb51..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class227DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class229DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class229DeepPImpl.class deleted file mode 100644 index be0192c36e74600be7e7c61b0ff7fdb216375172..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class229DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class230DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class230DeepPImpl.class deleted file mode 100644 index d556ec37fdc65583144db880e376bfcbee680fd2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class230DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class231DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class231DeepPImpl.class deleted file mode 100644 index dcf0da2f469de842b535c4591568dcdec86a94d8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class231DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class232DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class232DeepPImpl.class deleted file mode 100644 index 274a98948cf0436e6b3d1f673ba111d312d11416..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class232DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class233DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class233DeepPImpl.class deleted file mode 100644 index a598b1b96b1201d1ccc950db59c54c2260f101e9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class233DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class234DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class234DeepPImpl.class deleted file mode 100644 index 2d4fdd03ddd2360c67d2b3fc684548d1eab618aa..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class234DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class235DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class235DeepPImpl.class deleted file mode 100644 index 505eb2eddb7268d8ec02f27480702634e1349507..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class235DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class236DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class236DeepPImpl.class deleted file mode 100644 index ee751c58e4feb8b245936dac7f5140da4134db5c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class236DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class237DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class237DeepPImpl.class deleted file mode 100644 index d9d2df7a918ef69057617ef1449db3711ddef029..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class237DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class238DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class238DeepPImpl.class deleted file mode 100644 index 65f3aaa1cfac3f008e20f75fffc2c0dadd23f6db..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class238DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class239DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class239DeepPImpl.class deleted file mode 100644 index 8a431e9022ca31141ec3a36852d83df935bbc774..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class239DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class240DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class240DeepPImpl.class deleted file mode 100644 index d832bca508c848a4296d434caf14ff31028ed10a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Class240DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Mm5DeepCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Mm5DeepCloningMaterial.class deleted file mode 100644 index 82558fdeccb5f9f22998d07b03e56d281fe32279..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Mm5DeepCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Mm5DeepLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Mm5DeepLightCopier.class deleted file mode 100644 index 8d1144ab11246dad401899ff7a192746b37b0fca..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Mm5DeepLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Mm5DeepTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Mm5DeepTags.class deleted file mode 100644 index 291cd2bfcba2017acf74ca7fb778f993308da339..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5deep/Mm5DeepTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5modelcreator/Mm5ModelCreator.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5modelcreator/Mm5ModelCreator.class deleted file mode 100644 index 2c97f2fad5603c6b24db7107bf5e3f7490015e2d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5modelcreator/Mm5ModelCreator.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class161MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class161MutClassOnlyPImpl.class deleted file mode 100644 index 7e410cfe6fed450e21dbb76f1ffccc4d5bfef924..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class161MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class169MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class169MutClassOnlyPImpl.class deleted file mode 100644 index 9a868c95a1ce39321e617f743a6f034fd515a2b2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class169MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class189MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class189MutClassOnlyPImpl.class deleted file mode 100644 index f2b07560d4d3cabe59e125dec6fd03e3e5f67dd9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class189MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class193MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class193MutClassOnlyPImpl.class deleted file mode 100644 index 8225c19063a78193bc0e17d2e73fca80880efc7b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class193MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class196MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class196MutClassOnlyPImpl.class deleted file mode 100644 index c8926d1d5599e5edc17ff524b9334f187249eab6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class196MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class202MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class202MutClassOnlyPImpl.class deleted file mode 100644 index 6f3a631ef32959a03b60a7aa1a09a43e582bb187..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class202MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class205MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class205MutClassOnlyPImpl.class deleted file mode 100644 index 1aa854e66ba3e87f9ee59e0b5ccc4bc05bd4a402..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class205MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class209MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class209MutClassOnlyPImpl.class deleted file mode 100644 index b2e6fe1b3c412ce5f59c3574e344a4f7726d520b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class209MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class211MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class211MutClassOnlyPImpl.class deleted file mode 100644 index 83ee3fee2cc79085281a9a7d309c3c8708294c4a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class211MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class212MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class212MutClassOnlyPImpl.class deleted file mode 100644 index efa991d4cfdf1c98ea5d58d6b76308b9a65867df..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class212MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class214MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class214MutClassOnlyPImpl.class deleted file mode 100644 index bcc22e122a11a61b5e2530bef467a0389d1881a7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class214MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class215MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class215MutClassOnlyPImpl.class deleted file mode 100644 index 2260f104ded836e5f3fe1f2f82a7c679f6196371..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class215MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class216MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class216MutClassOnlyPImpl.class deleted file mode 100644 index b96e2a1872292a65ec18f5b5a1060d7cb4747d87..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class216MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class218MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class218MutClassOnlyPImpl.class deleted file mode 100644 index c4e5bb8d867f154b02a06696007f0ad2b88745f4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class218MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class227MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class227MutClassOnlyPImpl.class deleted file mode 100644 index fb4922bebfe21edcc3c10083a03a9d1a6ba37f00..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class227MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class234MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class234MutClassOnlyPImpl.class deleted file mode 100644 index b17f71d1e706a405898df82745f51ea060db083a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Class234MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Mm5MutClassOnlyCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Mm5MutClassOnlyCloningMaterial.class deleted file mode 100644 index 31405ecf9469141cd6d7cdbbcf6a041a82413e0a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Mm5MutClassOnlyCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Mm5MutClassOnlyLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Mm5MutClassOnlyLightCopier.class deleted file mode 100644 index a85632b6b08229130c58859c72a579da9cb520ec..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Mm5MutClassOnlyLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Mm5MutClassOnlyTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Mm5MutClassOnlyTags.class deleted file mode 100644 index 355ec2b70650bb819b787f49657336a0e1c42247..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm5mutclassonly/Mm5MutClassOnlyTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class241.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class241.class deleted file mode 100644 index eaa69efa8d2cec149887d2134648e3a92e254b37..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class241.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class242.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class242.class deleted file mode 100644 index 5d593e680a364b3161750a3a36eabcf2cae65994..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class242.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class243.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class243.class deleted file mode 100644 index e2164045075a4cee81f01b65ad6d54d47a0dc408..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class243.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class244.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class244.class deleted file mode 100644 index 1739cb2cb3257cb8672980ffe5421d5a3aad24a3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class244.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class245.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class245.class deleted file mode 100644 index 952b46a31df5987f076730849b953d4e693d0a66..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class245.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class246.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class246.class deleted file mode 100644 index 03ed55f5b8234a1322ff9812a9484a87504643aa..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class246.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class247.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class247.class deleted file mode 100644 index 24f5c03d843048c904450a81bb2630704c92019f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class247.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class248.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class248.class deleted file mode 100644 index a9450218a5c0e2c2564a10fe27d48e9b7d22c6d3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class248.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class249.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class249.class deleted file mode 100644 index ba5d7f614e7ba1d95de7fb4b3abbc1f896f67e21..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class249.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class250.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class250.class deleted file mode 100644 index 6708ac4241ebdbd887965a759b0c84ea25e0c743..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class250.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class251.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class251.class deleted file mode 100644 index d6d936fd44f63946b2fe967a7eddec9becf305ef..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class251.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class252.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class252.class deleted file mode 100644 index d944581a81e37eaf83e552cff3c608750c95d7ad..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class252.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class253.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class253.class deleted file mode 100644 index b341933d407493b0d5074d7788dad6d4a2364210..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class253.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class254.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class254.class deleted file mode 100644 index a87a9f7d81f67be4c22513087859a7302adfc469..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class254.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class255.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class255.class deleted file mode 100644 index 2a4f2ab39e2bada9a9a8fe634e38b4071d8f8848..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class255.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class256.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class256.class deleted file mode 100644 index a3bb240d6d0da2e4a247f3a4e87dfd4a58c2a710..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class256.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class257.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class257.class deleted file mode 100644 index d93754f081aef25a82d481b592e93cbcd3c8fd5b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class257.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class258.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class258.class deleted file mode 100644 index f19582687914f4cdb4408a762049113416199357..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class258.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class259.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class259.class deleted file mode 100644 index 314c2c612e69836dda4d07ca4a588ae02f7466ab..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class259.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class260.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class260.class deleted file mode 100644 index 6aebc44d86d36dc3a997ce213681fc2c5163ab19..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class260.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class261.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class261.class deleted file mode 100644 index 1a4b98bde038624ca699506aba61e89896b8cfd3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class261.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class262.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class262.class deleted file mode 100644 index 1d5dbe11cb98bb24a96eb882776870a1b40a6a21..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class262.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class263.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class263.class deleted file mode 100644 index b378ef01354e1708a7639ed9a1ca6f344316ac79..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class263.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class264.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class264.class deleted file mode 100644 index 7383e3ed5cbae2266876c7c335a32738ed289cd1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class264.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class265.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class265.class deleted file mode 100644 index 2e384c120a3b05d740c7d2d8515117ea8348731b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class265.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class266.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class266.class deleted file mode 100644 index b8d915ea90aed3fa28c98024a315fa638f930909..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class266.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class267.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class267.class deleted file mode 100644 index 196f41cd8cf195e018ea32db810a63a75130722d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class267.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class268.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class268.class deleted file mode 100644 index 98b1acc86dfb3acb0db02b049cc88211d5cee555..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class268.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class269.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class269.class deleted file mode 100644 index 0666abbca679ac6f9da5acffc8b052752ec0b7be..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class269.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class270.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class270.class deleted file mode 100644 index ca0a51a4237209e9f52066e921b2cc080c41a0e0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class270.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class271.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class271.class deleted file mode 100644 index 0c461d4078ba481a638e9e0b5a32ace8bcf61d74..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class271.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class272.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class272.class deleted file mode 100644 index 15d4194f33c534af1e93538a0271d3a6b7dee21d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class272.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class273.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class273.class deleted file mode 100644 index bad1ee013df76ec93df40c5832d33911b3cbe2df..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class273.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class274.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class274.class deleted file mode 100644 index 2f87a99d88779c3a8c9be7323a79900af2cd1b49..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class274.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class275.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class275.class deleted file mode 100644 index 932bac7ef9d59bb173d30aa07fcabea0b3e24d0f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class275.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class276.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class276.class deleted file mode 100644 index 940104420c35c8bd313326a3155f0f13bcec68c3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class276.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class277.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class277.class deleted file mode 100644 index 9e6e4ff2feec9ba923950b4f46caa96fb015d6e5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class277.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class278.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class278.class deleted file mode 100644 index 6890c07e5df50d815059a38f4536cce74cf33d1f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class278.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class279.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class279.class deleted file mode 100644 index 5f8a8a5e77ebdde3e269082d94792e8c8772decc..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class279.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class280.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class280.class deleted file mode 100644 index 136da55d82d44f57dca72fee73de08240de688c0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class280.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class281.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class281.class deleted file mode 100644 index 6a22e5cf25f77ebf283077ad7d373f8f1c8182f5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class281.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class282.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class282.class deleted file mode 100644 index e09d428abb3a222e67317620b1686a8239e06012..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class282.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class283.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class283.class deleted file mode 100644 index 7abb7b82f1fb45a38c72ce69c620737610ab4124..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class283.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class284.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class284.class deleted file mode 100644 index 855aebbfb284dfabaeb294125098e90bf342d8d8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class284.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class285.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class285.class deleted file mode 100644 index 2432697597f6a6f35a338a0605e6914b16c88bd5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class285.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class286.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class286.class deleted file mode 100644 index 77cee9870e1ea10c412fe2bef0077c3283c7fa42..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class286.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class287.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class287.class deleted file mode 100644 index eacb07300f9fc57df735fb5f907667025e224f6f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class287.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class288.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class288.class deleted file mode 100644 index 1293cc34b86f3685b4742fb62866f5b943a36232..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class288.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class289.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class289.class deleted file mode 100644 index 0950bdaa90b1b96c054a0ed6c62f04b9591a6377..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class289.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class290.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class290.class deleted file mode 100644 index c0d2c033a68fc20d8c392fe6247882aaa3e570a8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class290.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class291.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class291.class deleted file mode 100644 index 5ab96fbe9790165fb6be37d8625e7d1beee9502d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class291.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class292.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class292.class deleted file mode 100644 index 672a58bb6e99881f31b263fbe8d730420d19f82d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class292.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class293.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class293.class deleted file mode 100644 index 7850219b475103eb3324345be70d89850e4cc318..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class293.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class294.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class294.class deleted file mode 100644 index 1ea0506c8b402253d3b98681a5e52cc9b12e243d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class294.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class295.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class295.class deleted file mode 100644 index bb39c9ce5455a48f5ba3d8dea76ebd75239cedae..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class295.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class296.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class296.class deleted file mode 100644 index 49f29539cfec76274603cc80824c968bc8a2e195..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class296.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class297.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class297.class deleted file mode 100644 index 25ac17519425a67e066d9aae4dac36c2cd876cfe..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class297.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class298.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class298.class deleted file mode 100644 index 18976bd975166bf78da064360f2ef73497d8b752..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class298.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class299.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class299.class deleted file mode 100644 index 33e514e3dcc7c7795bb07178c8398d215f36de45..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class299.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class300.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class300.class deleted file mode 100644 index b48efadc3818ecc99eb459924c839764d060a6d6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class300.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class301.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class301.class deleted file mode 100644 index 7ad1a3e9a8b2c8b1b91e30b2306d71dbcfbcbe19..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class301.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class302.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class302.class deleted file mode 100644 index 9af8d639737206eb6a4cc5b8836622f1df4ef1d2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class302.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class303.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class303.class deleted file mode 100644 index e919bb060c4955e7fc28063c937d6d792bb4c52f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class303.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class304.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class304.class deleted file mode 100644 index fe045a99efb6bb06a697720df7d6c6f762c431d6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class304.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class305.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class305.class deleted file mode 100644 index 8040d756649a8467770d63e2a5c2e54dd9ae2323..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class305.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class306.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class306.class deleted file mode 100644 index 9e949968b6c91eebe42a109f84118dae4c219f85..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class306.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class307.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class307.class deleted file mode 100644 index 5ed39662d003caeeef422c7680b008cfcdd0afae..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class307.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class308.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class308.class deleted file mode 100644 index 650e5c5509d2b094c7318971a53e2d3b016dad54..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class308.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class309.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class309.class deleted file mode 100644 index cfa6df34e2bd2119c95a05e03a6a308c5c93d5c7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class309.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class310.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class310.class deleted file mode 100644 index 844dce20f101663a76e8d6c35cf7cf08f011e6d6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Class310.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Mm6Factory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Mm6Factory.class deleted file mode 100644 index 2759143e22f9fb4f17c0ea2d860c2cce6f04474a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Mm6Factory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Mm6Package$Literals.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Mm6Package$Literals.class deleted file mode 100644 index f9fa84384985f2dd4c3f7c93d54945bd02933520..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Mm6Package$Literals.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Mm6Package.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Mm6Package.class deleted file mode 100644 index ca5e82fec3a11419a829df4a259d647f4a48bbdd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/Mm6Package.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class241Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class241Impl.class deleted file mode 100644 index 5b182da1b537df5e9127ebcdb8bce43043c202a4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class241Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class242Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class242Impl.class deleted file mode 100644 index 2151f0dba37915fbffcaf0f99548a4f63fb53a11..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class242Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class243Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class243Impl.class deleted file mode 100644 index b2866440f1794365ae2338faaecfe8e49516e982..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class243Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class244Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class244Impl.class deleted file mode 100644 index 05ad820185b7500c59385032b2670c0783a31a98..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class244Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class245Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class245Impl.class deleted file mode 100644 index c90de324ab7dcb6bfc268ce79f838946ecbc0ff2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class245Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class246Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class246Impl.class deleted file mode 100644 index 66739796ccaf9e9cb0da82ad2a644593eb196f82..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class246Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class247Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class247Impl.class deleted file mode 100644 index 0dc960b8dd0fa0a097ee79c6bed9e3ff554b7cf1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class247Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class248Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class248Impl.class deleted file mode 100644 index 96d1b7ce8c124f70c84b0c5d11df68ed55b5f6e3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class248Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class249Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class249Impl.class deleted file mode 100644 index d3f33dffae5b22a12b14c757ac7a3db2ec4951ef..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class249Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class250Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class250Impl.class deleted file mode 100644 index 181fa4ae5e16df551c88eb840807238d9c80ab02..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class250Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class251Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class251Impl.class deleted file mode 100644 index a5532244967e9bc471c6e80ce2ad0715e261e564..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class251Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class252Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class252Impl.class deleted file mode 100644 index 867e5ca898ee9640c08c057f54e41d1db695930a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class252Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class253Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class253Impl.class deleted file mode 100644 index 17da994b72cac80bd07a1243f002533728ab5944..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class253Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class254Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class254Impl.class deleted file mode 100644 index e09a465f027acaec25ced7126f53c607d4a77880..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class254Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class255Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class255Impl.class deleted file mode 100644 index d4263d1c75e73ac999e306ee3e20bfdaf0d49183..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class255Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class256Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class256Impl.class deleted file mode 100644 index b13a3cf12cad55c97f8a95b20eb216650df52a27..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class256Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class257Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class257Impl.class deleted file mode 100644 index dc079f6fefa0032079c61421eb688baeff404287..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class257Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class258Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class258Impl.class deleted file mode 100644 index 3b4cb137790e90534d04ddc18a3a053de5ee7ff1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class258Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class259Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class259Impl.class deleted file mode 100644 index 32dcc677a0d18a6b663c1cc83a9919abf170a6f5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class259Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class260Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class260Impl.class deleted file mode 100644 index 35f6b3b0e5b5b1b3d93241d43f21cb855397a05a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class260Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class261Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class261Impl.class deleted file mode 100644 index e0dd0aa6cded1c91d8efabe8523490f3d65f672c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class261Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class262Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class262Impl.class deleted file mode 100644 index c055dd4dcf49e5be367c6fa72261dd4158befd19..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class262Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class263Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class263Impl.class deleted file mode 100644 index 5b47d912b24685b747d478eb1063da14e6276343..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class263Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class264Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class264Impl.class deleted file mode 100644 index 75c9ae1957111dc59f2c612de20b502953243d53..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class264Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class265Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class265Impl.class deleted file mode 100644 index 1806afdbc52cc5a4472601388d61d67f8f332cb2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class265Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class266Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class266Impl.class deleted file mode 100644 index 95c5a720c0d9c244bd592fd74a96e54ce36b5203..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class266Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class267Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class267Impl.class deleted file mode 100644 index 749ad421cf62f4b0fb20631c1469103161cce681..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class267Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class268Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class268Impl.class deleted file mode 100644 index f861a04e95bf04782f0b4e18ce18c19f4a0ade5c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class268Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class269Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class269Impl.class deleted file mode 100644 index 479c5f7fb44f88dd5a749f4bde4e857811ded7e4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class269Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class270Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class270Impl.class deleted file mode 100644 index a3d765778f22bcb56108f695f7c1594239458ea3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class270Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class271Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class271Impl.class deleted file mode 100644 index e2512b9094d65d0d1c35c96e4990682e9e22d63d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class271Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class272Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class272Impl.class deleted file mode 100644 index 96e0482b6b87e63d71863f414646629bda485e05..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class272Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class273Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class273Impl.class deleted file mode 100644 index 5415e50d1f71c4661c96133e7275f849077920bf..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class273Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class274Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class274Impl.class deleted file mode 100644 index beda41da59852ceea3eb85a01353900d4636e0b8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class274Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class275Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class275Impl.class deleted file mode 100644 index c9ccfeec0d4e8280c1f1e81b4810559201f850b8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class275Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class276Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class276Impl.class deleted file mode 100644 index 849fcfdb25c0080ea16851a2d992ff4b75845efe..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class276Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class277Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class277Impl.class deleted file mode 100644 index 7eb2c11fd4a2c677936da6aeee8096048615799e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class277Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class278Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class278Impl.class deleted file mode 100644 index 64258e51d726ade95994e4f43e2973929637a2d1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class278Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class279Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class279Impl.class deleted file mode 100644 index 284bc6ec57f06b510074ad40b70b8f4f6bdc4ac8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class279Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class280Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class280Impl.class deleted file mode 100644 index ea2a423c5e85e0fe73254282564e3bb317ba378f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class280Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class281Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class281Impl.class deleted file mode 100644 index 0a5c9e4b8d6bf51577e365ae611686fecdd1ff03..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class281Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class282Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class282Impl.class deleted file mode 100644 index 89f576bdb975dcd43cfc0c067c2de391db059344..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class282Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class283Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class283Impl.class deleted file mode 100644 index af330855d9dac1bf38e095d6fa167f39e045a392..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class283Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class284Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class284Impl.class deleted file mode 100644 index 41417fe180bb436cdefb04fa9d0a5f746fd301fe..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class284Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class285Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class285Impl.class deleted file mode 100644 index c66e5de02ca91be51bf5e95903378f1b253f8ce6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class285Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class286Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class286Impl.class deleted file mode 100644 index a27a817ec086b9e0aa1e6faa00e41e2dccc44694..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class286Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class287Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class287Impl.class deleted file mode 100644 index 0f7afd91ada6eccad40f6fb8897f133e74d82cb1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class287Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class288Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class288Impl.class deleted file mode 100644 index e3a15eca188cd7fb9f571523094560bc9c346942..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class288Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class289Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class289Impl.class deleted file mode 100644 index 63c507d7f5d3a8fc427309301849505ca3616c57..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class289Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class290Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class290Impl.class deleted file mode 100644 index f28280c57f74024337260c23e520c9818d5cd333..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class290Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class291Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class291Impl.class deleted file mode 100644 index 9a9c3036d8839908ca24bcf9c8022fed952f6c2d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class291Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class292Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class292Impl.class deleted file mode 100644 index ed012678de4aba488899c303abee6d4b870315eb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class292Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class293Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class293Impl.class deleted file mode 100644 index 891f93a9e1664e91fc230b3a5f5eee6771234da6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class293Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class294Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class294Impl.class deleted file mode 100644 index ebc23be5b44c9c20088cf6ed83b1474bd865611d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class294Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class295Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class295Impl.class deleted file mode 100644 index 0fc69bede4a061d52ee5ed39cf9e8d255ec03d36..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class295Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class296Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class296Impl.class deleted file mode 100644 index 3e6e2e68e8cab3b6a8e7ecd355a95f58fe36c09f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class296Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class297Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class297Impl.class deleted file mode 100644 index 6d9cb352a0d585989381aa725a64d9930bfb17ef..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class297Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class298Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class298Impl.class deleted file mode 100644 index 58b49db1e00efe850858a6181a97f6496e52c5c7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class298Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class299Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class299Impl.class deleted file mode 100644 index 5a7ca111c55ead4306fa7c4929c70fde0b524e6e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class299Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class300Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class300Impl.class deleted file mode 100644 index 307564498d8bfca949d2d77488a244e84929cc36..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class300Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class301Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class301Impl.class deleted file mode 100644 index 9967a67bf77589020c541e08fbe8a1712ab6247d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class301Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class302Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class302Impl.class deleted file mode 100644 index 89f8c8728a05c29f83de669f32fcfded104eb988..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class302Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class303Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class303Impl.class deleted file mode 100644 index 3fb101f3e0407de8ccae9d9b71ab2526b59fd62a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class303Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class304Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class304Impl.class deleted file mode 100644 index 5cae20da11d64cd46cf501cc4ee5c1602edfa937..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class304Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class305Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class305Impl.class deleted file mode 100644 index fdb69da9c6b9ff68d2cdc5b03a33ed70eb570ad1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class305Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class306Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class306Impl.class deleted file mode 100644 index 9f13aa3e44ccc8e178fdf77f841f44be7558b284..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class306Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class307Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class307Impl.class deleted file mode 100644 index 9892fdfd47bdfad46cbac57faa189b987af01bcd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class307Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class308Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class308Impl.class deleted file mode 100644 index 785dd0f596963db5be54c4b84da0f2ed5e10ecee..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class308Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class309Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class309Impl.class deleted file mode 100644 index c87d9fdc2a5936dcf8d8eaf631d1ef9d3df0a96b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class309Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class310Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class310Impl.class deleted file mode 100644 index 24848f045ecbba68abcf40cb360d2846bc7fef99..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Class310Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Mm6FactoryImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Mm6FactoryImpl.class deleted file mode 100644 index 27fffcda293cf8b0beff16c12c12f3a3cc1953f7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Mm6FactoryImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Mm6PackageImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Mm6PackageImpl.class deleted file mode 100644 index 054b8d7752e5930f4dcb91ed8f58750e58ba7c18..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/impl/Mm6PackageImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/util/Mm6AdapterFactory$1.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/util/Mm6AdapterFactory$1.class deleted file mode 100644 index b320f8a0cf57f9f362f89ae3741c0304f2eee21b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/util/Mm6AdapterFactory$1.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/util/Mm6AdapterFactory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/util/Mm6AdapterFactory.class deleted file mode 100644 index 4a54fa99da0a6d92b275bf00f49c740e9f7e7346..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/util/Mm6AdapterFactory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/util/Mm6Switch.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6/util/Mm6Switch.class deleted file mode 100644 index 7fab8cb606151bb4b09d2097ccb51d3eb620d4c3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6/util/Mm6Switch.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class242DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class242DeepPImpl.class deleted file mode 100644 index f3a4ef017c4b32072a93ebc680f600620a46abe9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class242DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class243DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class243DeepPImpl.class deleted file mode 100644 index a94252976acdd0e7245e2bc0f0408e32e12947cd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class243DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class247DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class247DeepPImpl.class deleted file mode 100644 index a73872304229103f15b42e1a28e8956944ddb886..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class247DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class248DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class248DeepPImpl.class deleted file mode 100644 index 7a9154c63c33368ac69ab753574593168c01a27e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class248DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class252DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class252DeepPImpl.class deleted file mode 100644 index 4fe4566256cf947f274ef57c9483a35b48f8b703..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class252DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class253DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class253DeepPImpl.class deleted file mode 100644 index 70bfceefe872505c6c076d9fa4b2a71fad79ae30..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class253DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class256DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class256DeepPImpl.class deleted file mode 100644 index 48cef8bf273d26380fd7f1a803bfa30a53e6aa07..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class256DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class257DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class257DeepPImpl.class deleted file mode 100644 index 60f338a55627e795f1c080b1362e7473e9baea59..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class257DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class261DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class261DeepPImpl.class deleted file mode 100644 index 67090000ff159a22cb97ded2dbc5d51269cb23a8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class261DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class262DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class262DeepPImpl.class deleted file mode 100644 index 34355f318fdc8b6bd83bf8c765f6665af63ca62c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class262DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class263DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class263DeepPImpl.class deleted file mode 100644 index cba7b293bca162b3cba1cabca35ecf40a8a248d0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class263DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class268DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class268DeepPImpl.class deleted file mode 100644 index 5a87d4a9082f9f985eec5bfe5379f8dfca7d8f5c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class268DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class269DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class269DeepPImpl.class deleted file mode 100644 index 1c5f813cf3f9f5ac58a1415cf49d2561e2faaf5c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class269DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class270DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class270DeepPImpl.class deleted file mode 100644 index ef34932ff1e66c7bcfaa367594579f445979e8e7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class270DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class272DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class272DeepPImpl.class deleted file mode 100644 index 1581f8f50b2bca7431114728fb3a6b568d9229bd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class272DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class274DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class274DeepPImpl.class deleted file mode 100644 index 0c01b7d5860f5bad0fbe3ced97250b016d0a6037..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class274DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class277DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class277DeepPImpl.class deleted file mode 100644 index 4122fd3883f0b189f5f1b34a7f6a0582d3a4cec9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class277DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class280DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class280DeepPImpl.class deleted file mode 100644 index 6da713ed753b4ed2abe9c893580518e214fe2c91..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class280DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class284DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class284DeepPImpl.class deleted file mode 100644 index ad8b6f88c1fa3f516ee171d45512aa5c77bc0e5e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class284DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class287DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class287DeepPImpl.class deleted file mode 100644 index 8bc0140907ff5bdc048a89908a8f3973247eedfe..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class287DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class289DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class289DeepPImpl.class deleted file mode 100644 index 904fa56a4d6e2d307cddecf1e75fa7e8ba74142b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class289DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class290DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class290DeepPImpl.class deleted file mode 100644 index cc178a412cfa55090d3bd6d6ca2f4b0a3310e83c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class290DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class293DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class293DeepPImpl.class deleted file mode 100644 index d7ddf4248e14b4cc48b878f9d1476355be5b4368..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class293DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class294DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class294DeepPImpl.class deleted file mode 100644 index 53e9d41cc0374df74a6be06fff577b99849a8744..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class294DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class295DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class295DeepPImpl.class deleted file mode 100644 index b6d9f31c5b2976144f7814b8a04713cfb477eb6a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class295DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class297DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class297DeepPImpl.class deleted file mode 100644 index e9e13bd992fbd13ef3187541cfb440a82b2135af..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class297DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class299DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class299DeepPImpl.class deleted file mode 100644 index 30e63465c00c4bc7bf9c8c7d667918be85ec1e9c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class299DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class301DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class301DeepPImpl.class deleted file mode 100644 index 529b1bce4eaaccb3b0c1a7c8ccebfb5979ca3291..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class301DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class303DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class303DeepPImpl.class deleted file mode 100644 index 4cda9e8dbb70c8047f13d825d39fd0b444ad8cf4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class303DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class309DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class309DeepPImpl.class deleted file mode 100644 index 260d1811dd08bba231252eb8a74ffc33870a4abe..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Class309DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Mm6DeepCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Mm6DeepCloningMaterial.class deleted file mode 100644 index a01c2a9a197fd0fc61f6caaddee800034d771667..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Mm6DeepCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Mm6DeepLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Mm6DeepLightCopier.class deleted file mode 100644 index 5c501d6de2776af8252064848158259729786bf2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Mm6DeepLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Mm6DeepTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Mm6DeepTags.class deleted file mode 100644 index 92bc10963c506ba4dae8a992944364d80562cac2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6deep/Mm6DeepTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6modelcreator/Mm6ModelCreator.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6modelcreator/Mm6ModelCreator.class deleted file mode 100644 index 793f87c54f0333eed619c191e73d55fd9c7c74e7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6modelcreator/Mm6ModelCreator.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class250MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class250MutClassOnlyPImpl.class deleted file mode 100644 index 8c6c3dadbb15dd916f46607a075c39be96efe3fc..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class250MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class261MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class261MutClassOnlyPImpl.class deleted file mode 100644 index 953f54c8648216f31b8863ac7fe613f108a5cc5e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class261MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class263MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class263MutClassOnlyPImpl.class deleted file mode 100644 index ed1f371895576ad7dbf067721f14fa459579ed7b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class263MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class268MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class268MutClassOnlyPImpl.class deleted file mode 100644 index 02d26d24acc1aef8d8362dbf1d7d46819942719a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class268MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class270MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class270MutClassOnlyPImpl.class deleted file mode 100644 index 98b04a2884297ab2339d0508799ef243494f2c59..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class270MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class272MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class272MutClassOnlyPImpl.class deleted file mode 100644 index 60d2132760c9aaac914d466b5b4d094044c86934..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class272MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class274MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class274MutClassOnlyPImpl.class deleted file mode 100644 index 5489c6e81591fd5f185b9cf8abce78998141e071..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class274MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class277MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class277MutClassOnlyPImpl.class deleted file mode 100644 index 92a2cebdecb7011f94c18463ce748a5189cd858b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class277MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class282MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class282MutClassOnlyPImpl.class deleted file mode 100644 index f98c27e5e1d12342566128bfa63c636f55a30c6d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class282MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class285MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class285MutClassOnlyPImpl.class deleted file mode 100644 index f2c091cee4ca1cc0d79724305c15b5a3d3528e93..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class285MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class287MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class287MutClassOnlyPImpl.class deleted file mode 100644 index 3afb88ac5b1522d9d8f5d5c5bb97509a88b5f938..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class287MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class289MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class289MutClassOnlyPImpl.class deleted file mode 100644 index f36f04a235d2ec239983c03331a0d3763716ca0f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class289MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class290MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class290MutClassOnlyPImpl.class deleted file mode 100644 index 9ed2c5223c4fc7dd94b021d9eb4fa5ae0ff26853..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class290MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class294MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class294MutClassOnlyPImpl.class deleted file mode 100644 index f6b577c830fb3a9a81c4a0d4dcc5bcaf39e92108..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class294MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class295MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class295MutClassOnlyPImpl.class deleted file mode 100644 index a2c33776c09a76dd8c169048d9460fce601310eb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class295MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class297MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class297MutClassOnlyPImpl.class deleted file mode 100644 index 9b90fba787271af7f5312e3b6c5c639e763b2c20..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class297MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class299MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class299MutClassOnlyPImpl.class deleted file mode 100644 index 14d24fcf135eea53c9f0c4bb331bbfd307309243..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class299MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class301MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class301MutClassOnlyPImpl.class deleted file mode 100644 index c85b2ec7e82f5f131e71c77084b04958343cef25..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class301MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class303MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class303MutClassOnlyPImpl.class deleted file mode 100644 index 56dadf57c5311997f63251866f4eb43d6b8d70ef..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class303MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class310MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class310MutClassOnlyPImpl.class deleted file mode 100644 index fe339af71473602ada443f3c6150f5a244da9e90..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Class310MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Mm6MutClassOnlyCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Mm6MutClassOnlyCloningMaterial.class deleted file mode 100644 index f72a48c265988e1cf7f0005fb9eb78fbde5786f4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Mm6MutClassOnlyCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Mm6MutClassOnlyLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Mm6MutClassOnlyLightCopier.class deleted file mode 100644 index a10ed03064c8b41e42a3dc9446ecc96cab5371a7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Mm6MutClassOnlyLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Mm6MutClassOnlyTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Mm6MutClassOnlyTags.class deleted file mode 100644 index 2634084303aa299cc867b8f3bfda6944fab8e9fc..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm6mutclassonly/Mm6MutClassOnlyTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class311.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class311.class deleted file mode 100644 index 64c7057723283d8c275f8e21e32994733835fd20..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class311.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class312.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class312.class deleted file mode 100644 index d76a96a957a3766bfc09473aaf9cd21264bf3655..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class312.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class313.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class313.class deleted file mode 100644 index d2072d897a5781eb15c603901cee89f1ce22a683..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class313.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class314.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class314.class deleted file mode 100644 index f3c912c9a78ba0b245b2048dedae78c2939c22dc..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class314.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class315.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class315.class deleted file mode 100644 index 5a348449b6ebdc3b04b5150453838136868be52c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class315.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class316.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class316.class deleted file mode 100644 index db81e319859115a2ffeb1a32180467153a2ff556..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class316.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class317.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class317.class deleted file mode 100644 index 22c7cfa9ad64b81f8a4b1ce88903f672897a8ae6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class317.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class318.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class318.class deleted file mode 100644 index d553fd07f5e67baf90bacb625aed3608fd18f069..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class318.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class319.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class319.class deleted file mode 100644 index b4e4f60fbbcf608f96cc1b34add77dc9831438e4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class319.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class320.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class320.class deleted file mode 100644 index e5d1ba720f6f43b55168ba82a7bd9bc7142eaeaf..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class320.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class321.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class321.class deleted file mode 100644 index 1d95ae500a09037572fa56f4670fdc389b7e0907..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class321.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class322.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class322.class deleted file mode 100644 index 2bef9f6196bfa627ad9c3d0b065ff700246d2be4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class322.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class323.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class323.class deleted file mode 100644 index 4851e47d21101195049f012fa0038b3e8ce3584e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class323.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class324.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class324.class deleted file mode 100644 index 6d7fd42d245515e347b12dad46af7f34bbea9de7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class324.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class325.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class325.class deleted file mode 100644 index 6b54268bee6619f777067a3b7e3c8563c6e28836..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class325.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class326.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class326.class deleted file mode 100644 index dfd35c278a2b8e3cb2088816c72d1a373ad51c2f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class326.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class327.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class327.class deleted file mode 100644 index de993a1203e1b25c3170132e0ecc18fab16288b5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class327.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class328.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class328.class deleted file mode 100644 index 6bb4ea25a564af42918d0d22f0d526942b74d435..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class328.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class329.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class329.class deleted file mode 100644 index b8cca87fe81c81eab6425fb9998b094473ea0b73..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class329.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class330.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class330.class deleted file mode 100644 index e0e47c72709292271f133b2f3d727dcd42986e76..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class330.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class331.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class331.class deleted file mode 100644 index 6552bc4e5b46ad9f9266e8360c1483fff4290957..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class331.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class332.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class332.class deleted file mode 100644 index 02d37290d77cec8be9866993ac8e43219b82af45..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class332.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class333.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class333.class deleted file mode 100644 index 13d0f86a6d27a5c2f9e6d5aed722238768bcf1c0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class333.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class334.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class334.class deleted file mode 100644 index ee34eadf778f29d4d3ae458bea86519280757624..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class334.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class335.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class335.class deleted file mode 100644 index 549ac021b6931b5467993f84cd98b4353d3ff6d7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class335.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class336.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class336.class deleted file mode 100644 index 9f3540a9264c30b5f71612809ce5072eb3bb7a67..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class336.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class337.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class337.class deleted file mode 100644 index 6fc4c5aa601b223a3643a36e5317b600b413fea7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class337.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class338.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class338.class deleted file mode 100644 index c580a32d87e92941eb5c5de9ce1f81abcdfb6229..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class338.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class339.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class339.class deleted file mode 100644 index 76e8277c7403d0663478b5a1f625710d0306af73..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class339.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class340.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class340.class deleted file mode 100644 index 1926f672faace83e636c1c4c8b9f14663b29f1a3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class340.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class341.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class341.class deleted file mode 100644 index 93cd9d4000daa5f2135c41b76de5834c9f8142bf..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class341.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class342.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class342.class deleted file mode 100644 index 4e54f76418ab2f4a4315ea66271ae0922fc612b2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class342.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class343.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class343.class deleted file mode 100644 index d929d50ad0df360d88488d22f7b83d1b0bd6cbb7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class343.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class344.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class344.class deleted file mode 100644 index 603bca3eacc24652280a550164fba648f1d35365..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class344.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class345.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class345.class deleted file mode 100644 index 81114adfbd70bd48e89df4d23618435b322c89c4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class345.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class346.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class346.class deleted file mode 100644 index 73cab373592429499a3919179812a731f3e5e3f6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class346.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class347.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class347.class deleted file mode 100644 index f5f1db4de76c0c467eedc7e9959be57c3827f244..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class347.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class348.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class348.class deleted file mode 100644 index 180a7c8a9d36a81438ae906dfccd040a2ab6c80b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class348.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class349.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class349.class deleted file mode 100644 index a42cf66869d257551e5ad2c743091bce2e511d66..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class349.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class350.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class350.class deleted file mode 100644 index a493288169c7eab0ef8aa05e32fe396c01d0224f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class350.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class351.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class351.class deleted file mode 100644 index e8d245f8eaf9b476adba478b5e5e9cacd02341f6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class351.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class352.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class352.class deleted file mode 100644 index c62398dcd9e7a343bde804a72a6bd085610780db..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class352.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class353.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class353.class deleted file mode 100644 index 9e2a5fcb845d74302ba86f42b792fe0d6432c261..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class353.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class354.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class354.class deleted file mode 100644 index dd626023f09d3028bc92f4a2fbc00ebe814a4990..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class354.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class355.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class355.class deleted file mode 100644 index a44039e959bee1342f8ef43c3d025b35756ef167..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class355.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class356.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class356.class deleted file mode 100644 index 2bda3e8e1f32b49d82300e3acf9b570d7e3a297b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class356.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class357.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class357.class deleted file mode 100644 index c7fd2a834a408bc64659ee4aaedf60a6d879a025..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class357.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class358.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class358.class deleted file mode 100644 index 52234fc2cc2eceb7b1954f37b13728583951a037..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class358.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class359.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class359.class deleted file mode 100644 index 04d30e73d44866fd3e5e5a532eb661a49fb08bae..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class359.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class360.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class360.class deleted file mode 100644 index 2cf0410bd8d1179f3c4defc6cc2d5f7eb7de0135..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class360.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class361.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class361.class deleted file mode 100644 index 9b08e296172f1caf421803549c230d19c9c9c16e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class361.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class362.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class362.class deleted file mode 100644 index abd4c94a8f2c8bd91295e4608e112a3b7e06e809..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class362.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class363.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class363.class deleted file mode 100644 index f392b51d399e77c00e891f4d692e442e34843170..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class363.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class364.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class364.class deleted file mode 100644 index a79215107ebc9ebb80b78a1b458375432b7acc55..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Class364.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Mm7Factory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Mm7Factory.class deleted file mode 100644 index 7718d6ad218e5a1a4829f1db4820aba274e321eb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Mm7Factory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Mm7Package$Literals.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Mm7Package$Literals.class deleted file mode 100644 index 1bd9773a9c45b90a93607ab6a73735299c148751..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Mm7Package$Literals.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Mm7Package.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Mm7Package.class deleted file mode 100644 index ca6a111617dc9b62f81cf87fc7e795bf8664189e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/Mm7Package.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class311Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class311Impl.class deleted file mode 100644 index 4f3ec33dfc30b74ecb2e566644b869b77f277485..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class311Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class312Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class312Impl.class deleted file mode 100644 index 83ffb7edfea7bb8a4bb1a83ab978207f829c80db..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class312Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class313Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class313Impl.class deleted file mode 100644 index 0c4d1dfc75d69a579ae9330d124ad0ad9b94fbfa..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class313Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class314Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class314Impl.class deleted file mode 100644 index 741fb910d8a9baa09707cbd7b94b0b63ead922e0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class314Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class315Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class315Impl.class deleted file mode 100644 index b1c9d7296489d9d66716b646cba4fc6a6be508c3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class315Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class316Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class316Impl.class deleted file mode 100644 index 52ce3d742b8155c2b5f4ea28e117b4735cfb7535..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class316Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class317Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class317Impl.class deleted file mode 100644 index 3a11f8e4cbfacebe736a77ed62b4ab11c866341a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class317Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class318Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class318Impl.class deleted file mode 100644 index 85ca5a903fbcd459bc611ba0ea6cd3a7f1971c00..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class318Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class319Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class319Impl.class deleted file mode 100644 index bd93602ff6a3db2572e0ee2e0929b55c34a360bc..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class319Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class320Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class320Impl.class deleted file mode 100644 index 4d80399043a2c8dc110d821de5b132dc53845d87..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class320Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class321Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class321Impl.class deleted file mode 100644 index d83b64ad45ebc97bb1b3749a93fe049e2ae82222..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class321Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class322Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class322Impl.class deleted file mode 100644 index ab1c29ebcaa19e76fece42540009cb7399c08c9a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class322Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class323Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class323Impl.class deleted file mode 100644 index 4a9275e10e64a35b642a83164fd8104da7f6a93e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class323Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class324Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class324Impl.class deleted file mode 100644 index 20dbc8a3ed30cc7b1c0c1a249b6998d5de8eb41a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class324Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class325Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class325Impl.class deleted file mode 100644 index c09f0f47923d3ffc83cadc78c07585165e09c589..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class325Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class326Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class326Impl.class deleted file mode 100644 index 95a73726ef64829d376e74076a48bcddefb4fab2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class326Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class327Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class327Impl.class deleted file mode 100644 index 0e0447bc33c504e30e0896a751be9ec5c5f12914..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class327Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class328Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class328Impl.class deleted file mode 100644 index a7302561610427016ff8dd4d9916385057eb4ea1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class328Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class329Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class329Impl.class deleted file mode 100644 index a1f44da0c314f2ae5c12f2bdd55ac244e9f8fa88..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class329Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class330Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class330Impl.class deleted file mode 100644 index a214808b10b5697cce17a74f1329e9bcd3005ad7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class330Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class331Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class331Impl.class deleted file mode 100644 index ba1c9e23ee82f18bc6bcdbe4ee1276e82f77962b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class331Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class332Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class332Impl.class deleted file mode 100644 index 43ae9f883d3654b52378b4f5bccd318a4d175648..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class332Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class333Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class333Impl.class deleted file mode 100644 index 518583495aa24921ba7dd40e904a5982f278790d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class333Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class334Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class334Impl.class deleted file mode 100644 index a1657ab75c70752d30f0e705d7b8d88371ebda92..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class334Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class335Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class335Impl.class deleted file mode 100644 index 69985d8ef5f84e6756b32bf0459bc0dfcf0bfa95..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class335Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class336Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class336Impl.class deleted file mode 100644 index 857f8808551903b863a04a2f823e13ab67fa0173..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class336Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class337Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class337Impl.class deleted file mode 100644 index 713e15b944e61a871838270b62ed2715388b0214..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class337Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class338Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class338Impl.class deleted file mode 100644 index a4ba9f3725380001dae0fa834cbf9861a7cfb459..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class338Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class339Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class339Impl.class deleted file mode 100644 index c82a936faa93d33aed3cd05b9a83b10165cdbfe7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class339Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class340Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class340Impl.class deleted file mode 100644 index 178b68b5f4196ae5280e1a391bfac73d470c5be7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class340Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class341Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class341Impl.class deleted file mode 100644 index 78691a078c7b46fdfa600c82ab5aa02e98212493..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class341Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class342Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class342Impl.class deleted file mode 100644 index 629b383348916f504c1ee4f7a56ab5f085e5b6c5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class342Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class343Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class343Impl.class deleted file mode 100644 index e12797a016fdd1c67ceed070cba1b9349d17c9b6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class343Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class344Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class344Impl.class deleted file mode 100644 index 4bdcaed5840ef307a92cb360cfb89e24766e2ac1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class344Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class345Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class345Impl.class deleted file mode 100644 index ea8d01272ae4d759217db3d7a049c38212e310e6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class345Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class346Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class346Impl.class deleted file mode 100644 index 97e08339c2b6be36c79537ba362992f0fdc97d50..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class346Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class347Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class347Impl.class deleted file mode 100644 index b2cb584177d29bbed98e45045b43d32e99198735..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class347Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class348Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class348Impl.class deleted file mode 100644 index 6e813331599df3c259bf77c565008ba677411384..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class348Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class349Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class349Impl.class deleted file mode 100644 index 5554f9cff94443d7cb8aff039626f543d3dff820..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class349Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class350Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class350Impl.class deleted file mode 100644 index 16bf735c2c8b57c1b501280e129985a431af3957..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class350Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class351Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class351Impl.class deleted file mode 100644 index 206e1917078bcb3fa17352b79f9ffbb241bea55b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class351Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class352Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class352Impl.class deleted file mode 100644 index dfafc793be75348a1fd488be058d7343b6733eb2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class352Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class353Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class353Impl.class deleted file mode 100644 index 04b1df9781554571ac410498efd1a89420f2a3b6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class353Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class354Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class354Impl.class deleted file mode 100644 index 8513637fc42b1c4188e8848cea00631126828969..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class354Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class355Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class355Impl.class deleted file mode 100644 index 301aa9c3ba6a002c55e6a87865f111dab2fc400d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class355Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class356Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class356Impl.class deleted file mode 100644 index b40e98eec414e914902c39ba5e4644d57c8b3b83..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class356Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class357Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class357Impl.class deleted file mode 100644 index c27a12b9f190557722390fd3a97dde1881fa21c6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class357Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class358Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class358Impl.class deleted file mode 100644 index dcf31298687544b32bc1ae71f8735ee9316caa88..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class358Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class359Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class359Impl.class deleted file mode 100644 index aad4d01f384305a864dd2d38aa7da227694047e7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class359Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class360Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class360Impl.class deleted file mode 100644 index 084e7acd2bf141eda00630675f9e70f610f3d2b0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class360Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class361Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class361Impl.class deleted file mode 100644 index e0467e45b303b56133e30e7fded36d8c6276f4b1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class361Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class362Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class362Impl.class deleted file mode 100644 index 048f6bb112fb433ece2079d847513e30f742f840..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class362Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class363Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class363Impl.class deleted file mode 100644 index 974edff1883f1116250ea20f574b7162ddcac0a6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class363Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class364Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class364Impl.class deleted file mode 100644 index c6747076739f6cb3b3bf7989add8436ea6a3506a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Class364Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Mm7FactoryImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Mm7FactoryImpl.class deleted file mode 100644 index dbb2c61d9ce379b447a2b30bf6f8ff9feab0c6a2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Mm7FactoryImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Mm7PackageImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Mm7PackageImpl.class deleted file mode 100644 index 7f65a06df444dadd5e41a50e763488d95b98e75c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/impl/Mm7PackageImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/util/Mm7AdapterFactory$1.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/util/Mm7AdapterFactory$1.class deleted file mode 100644 index b96761ed77b5056c74f5a9275a0b1b7039f7aa30..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/util/Mm7AdapterFactory$1.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/util/Mm7AdapterFactory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/util/Mm7AdapterFactory.class deleted file mode 100644 index 59935832a07c160e5d574e227141972be7266be8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/util/Mm7AdapterFactory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/util/Mm7Switch.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7/util/Mm7Switch.class deleted file mode 100644 index 7e550b2f71ca3c43f5d4e734abddbfc39867f3aa..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7/util/Mm7Switch.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class312DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class312DeepPImpl.class deleted file mode 100644 index d9a01a6e3caffd1c46aa0aecd98ef99f6e15143d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class312DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class313DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class313DeepPImpl.class deleted file mode 100644 index fb82293dad7dbb1c6fdd2b483f69a5e331908df2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class313DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class314DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class314DeepPImpl.class deleted file mode 100644 index 7e72da1c3c577d5e99bc324045a0fb1b25a0e536..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class314DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class315DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class315DeepPImpl.class deleted file mode 100644 index 6dccdb88e3e2d39d904b79aa533cf81a6061ab47..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class315DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class316DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class316DeepPImpl.class deleted file mode 100644 index 41f2e6ba830010a11fb0eb64f5c96cc456196f74..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class316DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class317DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class317DeepPImpl.class deleted file mode 100644 index f2bc7efe1abdb2f9912f99b524bb84740ce4dac4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class317DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class318DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class318DeepPImpl.class deleted file mode 100644 index b20a76d52974dc397fa1dd82212bff17fe71c36b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class318DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class319DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class319DeepPImpl.class deleted file mode 100644 index 06b1a5b3c032c923205882809a255aadf5212b1c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class319DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class320DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class320DeepPImpl.class deleted file mode 100644 index f6043d8cbf034ac963df4f2488a0ffa96074b85d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class320DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class321DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class321DeepPImpl.class deleted file mode 100644 index 0d81e3c1a0b7eb1c5b1603022af4a74554d5178f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class321DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class322DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class322DeepPImpl.class deleted file mode 100644 index 37717f600a4c8c2b5a4fa644f8926138f4f2eb7f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class322DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class323DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class323DeepPImpl.class deleted file mode 100644 index 6edee1b2d8b4bc17ca00ae03581a3e610934aafc..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class323DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class324DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class324DeepPImpl.class deleted file mode 100644 index 4d3ed8ac33adf15ad70198d41b15089613bcf2f4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class324DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class325DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class325DeepPImpl.class deleted file mode 100644 index ca2cb8b95bd6c506a174ff09cf49ceda37fe8313..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class325DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class326DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class326DeepPImpl.class deleted file mode 100644 index e04ec143d18ca47002b807bfe5cc8da9f209be99..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class326DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class327DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class327DeepPImpl.class deleted file mode 100644 index 84f8e9cad75d2b4c5a69f9d742718b70b5570e14..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class327DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class328DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class328DeepPImpl.class deleted file mode 100644 index ac375ee5c0b6de693c3760d8018964a4c205ab61..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class328DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class329DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class329DeepPImpl.class deleted file mode 100644 index c5fb58cf9fd49eb97662ec7272fee5f5ee37415a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class329DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class330DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class330DeepPImpl.class deleted file mode 100644 index e6bffac5f8bd5681b54d73f7ad3477ab9292dd6f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class330DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class331DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class331DeepPImpl.class deleted file mode 100644 index 81477ef0d06e40d59ee0a98a6a7959b514f8776a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class331DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class332DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class332DeepPImpl.class deleted file mode 100644 index f18e129e8f968d4fa70990a7c2db8a54ee2d9202..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class332DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class333DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class333DeepPImpl.class deleted file mode 100644 index 4892dc10874440e04080a7920ed101aeb1eb49ea..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class333DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class334DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class334DeepPImpl.class deleted file mode 100644 index 9cccc2e07854749375379e529c33ccf95548eb9a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class334DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class335DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class335DeepPImpl.class deleted file mode 100644 index bd6474ee118f01a6b6065e5e91b1921740068e77..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class335DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class336DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class336DeepPImpl.class deleted file mode 100644 index 520124f58223b12c134a201f5ce387dac369d6b7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class336DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class337DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class337DeepPImpl.class deleted file mode 100644 index 2f48738710adc65b0b58aba96432dece8ee0d760..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class337DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class338DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class338DeepPImpl.class deleted file mode 100644 index 0386d65b8bc9a91f03bac6857d7024ea824cf6d6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class338DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class339DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class339DeepPImpl.class deleted file mode 100644 index 57646dd4ff6fc076e3e4701682953c1ed696a3a4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class339DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class340DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class340DeepPImpl.class deleted file mode 100644 index 2e83d74a89f06425d027d8d1a0fa42b9156b5834..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class340DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class341DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class341DeepPImpl.class deleted file mode 100644 index d2a16b705ce92dc9c1dfc0164dd4bac4cbaf6c46..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class341DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class342DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class342DeepPImpl.class deleted file mode 100644 index b08d5578c77988c77328b62f8235d301b8324036..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class342DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class343DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class343DeepPImpl.class deleted file mode 100644 index 2ccf98fde48cec9db9b1c2420b1bb0648dd9c56d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class343DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class344DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class344DeepPImpl.class deleted file mode 100644 index f0633dca17cde20a0f3f4dfeab9cec4f7a4969a4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class344DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class345DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class345DeepPImpl.class deleted file mode 100644 index fb7ef5badfb2baffa22e116c608f5db3aacd2389..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class345DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class346DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class346DeepPImpl.class deleted file mode 100644 index 9b259b128f2254231a04771869c34989aa9065f2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class346DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class347DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class347DeepPImpl.class deleted file mode 100644 index 352ec8f36e99217d7b47441465e202acc52c3153..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class347DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class348DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class348DeepPImpl.class deleted file mode 100644 index 0fa7bbf096069629e9da43bd7d477fefd4822692..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class348DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class349DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class349DeepPImpl.class deleted file mode 100644 index 0f3e542612bce7db9f6f781c8fe05e89aefbbbad..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class349DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class350DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class350DeepPImpl.class deleted file mode 100644 index b33c75a40f70812b759987aa07705e09889704b2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class350DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class351DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class351DeepPImpl.class deleted file mode 100644 index 1d90e95d0d0d4a72287961d8b2ec1601af47d2d9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class351DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class352DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class352DeepPImpl.class deleted file mode 100644 index f26b71afc99b6adc38a8243edb5baadcc0fbe36b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class352DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class353DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class353DeepPImpl.class deleted file mode 100644 index e75650e6df4249da150bc876ac128fd2e27729da..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class353DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class354DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class354DeepPImpl.class deleted file mode 100644 index 1093289405d2fa544d83416199c8a10f9dfa831b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class354DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class355DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class355DeepPImpl.class deleted file mode 100644 index 2e033d0a8cb9a15770589cca684b0c12ece35d05..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class355DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class356DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class356DeepPImpl.class deleted file mode 100644 index b68865cbaf66518dc6bd1f58a67a72971db0dd9d..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class356DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class357DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class357DeepPImpl.class deleted file mode 100644 index defa6cb3387a17f2d5eb1d5d3f255a326e214585..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class357DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class358DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class358DeepPImpl.class deleted file mode 100644 index b7cd62598b7d52377670fdbad0a54338a58d3b85..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class358DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class359DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class359DeepPImpl.class deleted file mode 100644 index 17b36db46df6e15c13a5d636159f2f03180a430c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class359DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class360DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class360DeepPImpl.class deleted file mode 100644 index 1e7737833dba7af4e9a6451b65db473e3dfb0ef2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class360DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class361DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class361DeepPImpl.class deleted file mode 100644 index 79e05e2fd4bc448a6be48db8b2241c41faca1aa3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class361DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class362DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class362DeepPImpl.class deleted file mode 100644 index e727a3acf9e91863d84765e209e6e633907e9f6a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class362DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class363DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class363DeepPImpl.class deleted file mode 100644 index a41eb5e8b49eb6b05189d3378925d46f9b99d12c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class363DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class364DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class364DeepPImpl.class deleted file mode 100644 index 7dda771b11b8520f5722de24e27653f83a2f9414..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Class364DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Mm7DeepCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Mm7DeepCloningMaterial.class deleted file mode 100644 index eb8c85afeae9e867129fe2a98d7bf0af23c1cb26..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Mm7DeepCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Mm7DeepLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Mm7DeepLightCopier.class deleted file mode 100644 index ed8ea7cb5a091881852568dbb3c07453913e38f3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Mm7DeepLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Mm7DeepTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Mm7DeepTags.class deleted file mode 100644 index b31bca4795062fc1e0f398e10c5a65c004169feb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7deep/Mm7DeepTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7modelcreator/Mm7ModelCreator.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7modelcreator/Mm7ModelCreator.class deleted file mode 100644 index 5f44294cf81684ace54284c52b59946a2e71eb4c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7modelcreator/Mm7ModelCreator.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class311MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class311MutClassOnlyPImpl.class deleted file mode 100644 index f9ac5393df97318682a629f097f6e19dcadaa9a5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class311MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class312MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class312MutClassOnlyPImpl.class deleted file mode 100644 index 9a9684aa75103fc7b42fc2a5970351133cccdb67..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class312MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class313MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class313MutClassOnlyPImpl.class deleted file mode 100644 index b061e0da550a9d4336ef416a702955d5349eb711..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class313MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class314MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class314MutClassOnlyPImpl.class deleted file mode 100644 index a35570e63716f8e2740698bf68a89069236dcdaf..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class314MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class315MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class315MutClassOnlyPImpl.class deleted file mode 100644 index c0bf414f74d30312d43e0591e8b147177a0ef061..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class315MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class316MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class316MutClassOnlyPImpl.class deleted file mode 100644 index 331f05e3b9ad9ce959f64a4986aad39d24f30d84..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class316MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class317MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class317MutClassOnlyPImpl.class deleted file mode 100644 index 669216d5e7aac0980160e7f7c429965f37a20de4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class317MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class319MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class319MutClassOnlyPImpl.class deleted file mode 100644 index cf93184b5d564b0c1dc65b24abd0779de2eb2f37..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class319MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class320MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class320MutClassOnlyPImpl.class deleted file mode 100644 index 5e3c46e4c5a8242f86727a735cc5f7f2abef4c73..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class320MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class321MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class321MutClassOnlyPImpl.class deleted file mode 100644 index c41f2dd540fbcec937a4b7a5b0f1d07dc8dda7d2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class321MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class323MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class323MutClassOnlyPImpl.class deleted file mode 100644 index 4b8c2be9477e06bcc1265045439cbd3e3b1a63d3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class323MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class324MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class324MutClassOnlyPImpl.class deleted file mode 100644 index 6cb862b160cad00591928dededd2bb84eb8f2a0e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class324MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class325MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class325MutClassOnlyPImpl.class deleted file mode 100644 index 90dfad5f72648d0bd3acf00c6b2b8c5bdfe15f88..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class325MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class329MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class329MutClassOnlyPImpl.class deleted file mode 100644 index 07d72cb4423011afbf2ccaedeb2740ef132d565f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class329MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class330MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class330MutClassOnlyPImpl.class deleted file mode 100644 index 4434a28fc3803a3d9975b4592201f6269245340a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class330MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class331MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class331MutClassOnlyPImpl.class deleted file mode 100644 index 568590913e8654ba94cb6dedbb6b300f801e0500..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class331MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class333MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class333MutClassOnlyPImpl.class deleted file mode 100644 index 953ef56fb6a1a09a0b8182d54f9042ebfb90ff58..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class333MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class337MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class337MutClassOnlyPImpl.class deleted file mode 100644 index 6004048a18a8610e5875002bc57e027cf050addd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class337MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class339MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class339MutClassOnlyPImpl.class deleted file mode 100644 index ad8960eab7e492504801b0edb667193e46e74bd0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class339MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class340MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class340MutClassOnlyPImpl.class deleted file mode 100644 index f679b7664aa5efaa00003b8cf2bca8ed9779e14c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class340MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class341MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class341MutClassOnlyPImpl.class deleted file mode 100644 index de35de81e312cd8382e61b8e087394570cb01edf..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class341MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class342MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class342MutClassOnlyPImpl.class deleted file mode 100644 index 24c26d17cd913b703707f0550c84b1c8f1b56143..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class342MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class344MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class344MutClassOnlyPImpl.class deleted file mode 100644 index 7909ce5bc257fc710702312c0227cf342901484e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class344MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class346MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class346MutClassOnlyPImpl.class deleted file mode 100644 index 85ea70f09b1bd85d71b179a406b018c14fd3ac6f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class346MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class348MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class348MutClassOnlyPImpl.class deleted file mode 100644 index dc4b50a3b83baf312b4817cb981af415ac8873c2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class348MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class349MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class349MutClassOnlyPImpl.class deleted file mode 100644 index 60db08e0b9b8f61c9835b33b8403acab67a75eb0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class349MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class350MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class350MutClassOnlyPImpl.class deleted file mode 100644 index e2359769730d6f834c30696d53ebd160b8d19d0f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class350MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class352MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class352MutClassOnlyPImpl.class deleted file mode 100644 index 35d1393e12ba5405d33e12c0b5265b0f8c498ad2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class352MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class354MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class354MutClassOnlyPImpl.class deleted file mode 100644 index 6dc26a30914931758918a7f221546091e2f32da9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class354MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class355MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class355MutClassOnlyPImpl.class deleted file mode 100644 index 0a1809000fa40d6b34909d136eb236d425fa0408..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class355MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class356MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class356MutClassOnlyPImpl.class deleted file mode 100644 index b029b5ddbfb4b45120f8279a24714d17e4cfe9b8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class356MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class357MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class357MutClassOnlyPImpl.class deleted file mode 100644 index c2aef60723dbfea525d5547b4fe182c862962c10..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class357MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class359MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class359MutClassOnlyPImpl.class deleted file mode 100644 index 2eceaabf81947ff14ab2474b9a69e4fc1602239c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class359MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class360MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class360MutClassOnlyPImpl.class deleted file mode 100644 index ba202714d7ebf4177bfeafc77e62c0baee5448e3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class360MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class361MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class361MutClassOnlyPImpl.class deleted file mode 100644 index bdab983189ecc6f785b1cbe70cb2bbd8b8505200..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class361MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class364MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class364MutClassOnlyPImpl.class deleted file mode 100644 index 462690ca8d7b2546fe7724d92b2d0cad513adabe..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Class364MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Mm7MutClassOnlyCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Mm7MutClassOnlyCloningMaterial.class deleted file mode 100644 index 6617a539f95d357fee1009a5adda77383de747f4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Mm7MutClassOnlyCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Mm7MutClassOnlyLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Mm7MutClassOnlyLightCopier.class deleted file mode 100644 index fc4944b504512e01021b00232c7f2ff317c90253..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Mm7MutClassOnlyLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Mm7MutClassOnlyTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Mm7MutClassOnlyTags.class deleted file mode 100644 index fbe3d735766d60ce3c48e05b179c640a90081053..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm7mutclassonly/Mm7MutClassOnlyTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class365.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class365.class deleted file mode 100644 index 27a38f1149ad5614ebaa4072dff076ae1e22303e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class365.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class366.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class366.class deleted file mode 100644 index 47ae1b7aa0a9f30a51a8b5a1865d529d9f1abdf4..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class366.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class367.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class367.class deleted file mode 100644 index fa4ee2027d78fd735e9f9b7964105a28ac4636d3..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class367.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class368.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class368.class deleted file mode 100644 index 7118781e28650be32e944743f14ef2eae145ed08..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class368.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class369.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class369.class deleted file mode 100644 index 28f1387d2fbbf254c9b66c91b726fd26ba6c1260..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class369.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class370.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class370.class deleted file mode 100644 index f8765c7ec351d927dcadef24130b0ba385e252e6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class370.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class371.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class371.class deleted file mode 100644 index 7a8208cae1c2a96e332a8bd5117fd3f688305a95..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class371.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class372.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class372.class deleted file mode 100644 index d9464c9fc8c55f114a11cb67ca57d5f5a51ee190..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class372.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class373.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class373.class deleted file mode 100644 index 81766f2783b40109241cb489a0ad9405d0b7af75..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class373.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class374.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class374.class deleted file mode 100644 index e73006483e11a09e8241ae239235104483b49e39..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class374.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class375.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class375.class deleted file mode 100644 index 18e8579e30c3b34fa9cc11d9bde60cae4aa151f0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Class375.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Mm8Factory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Mm8Factory.class deleted file mode 100644 index 9376c173008ab879799fe8246f195ee5d122fc1f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Mm8Factory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Mm8Package$Literals.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Mm8Package$Literals.class deleted file mode 100644 index e8af8d39e73eaadbba17d64958934d8ba535cced..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Mm8Package$Literals.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Mm8Package.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Mm8Package.class deleted file mode 100644 index 9c9219dfbdd915d74239a19751c09967537cfb50..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/Mm8Package.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class365Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class365Impl.class deleted file mode 100644 index 69e4aa17bfda8ba26692258106571141637b8f05..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class365Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class366Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class366Impl.class deleted file mode 100644 index 453fabeca3ee263d26166f721adad3d31c8e66b8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class366Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class367Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class367Impl.class deleted file mode 100644 index b0a5835b8128f1daf8f090bd09cd0434ee06c268..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class367Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class368Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class368Impl.class deleted file mode 100644 index 7b98ebffa74ba2ec95e1ba002c0411a0aca7d43a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class368Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class369Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class369Impl.class deleted file mode 100644 index 403d8ccb4c24a01b6cbe5d63c4c5e93bb300d7fa..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class369Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class370Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class370Impl.class deleted file mode 100644 index 892018aac3f4ef209e3affb593d49a1dbd69e803..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class370Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class371Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class371Impl.class deleted file mode 100644 index 1ab326269c30a6a29a13f88c5705f5918df931e7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class371Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class372Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class372Impl.class deleted file mode 100644 index b119eecf684e13c9dd27dcb0be62e014641667b2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class372Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class373Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class373Impl.class deleted file mode 100644 index 646ea9bd440c76268b5a06523a2c1fa4177551ea..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class373Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class374Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class374Impl.class deleted file mode 100644 index f9361a7e9eef678c928fbb002b9325d37131fb7c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class374Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class375Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class375Impl.class deleted file mode 100644 index eb1fc068f1302e14c35fed5568556bb7f3c6913f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Class375Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Mm8FactoryImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Mm8FactoryImpl.class deleted file mode 100644 index 37bbf6f5d4db1df73193095b1621ae84ad220885..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Mm8FactoryImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Mm8PackageImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Mm8PackageImpl.class deleted file mode 100644 index 9cf4698e3f01d32fd22997f323d31e43bfaf5cca..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/impl/Mm8PackageImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/util/Mm8AdapterFactory$1.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/util/Mm8AdapterFactory$1.class deleted file mode 100644 index be279035e577f17c391f899315c5054563846a63..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/util/Mm8AdapterFactory$1.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/util/Mm8AdapterFactory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/util/Mm8AdapterFactory.class deleted file mode 100644 index 9469c3acf968d175780ff3bdc840beda02d4b482..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/util/Mm8AdapterFactory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/util/Mm8Switch.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8/util/Mm8Switch.class deleted file mode 100644 index 05c527ce1c0f167f618af87cfefa67c7de2f681f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8/util/Mm8Switch.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class365DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class365DeepPImpl.class deleted file mode 100644 index 4a7dff13ffbed256b2b6ecd04351ae5fa089a6e8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class365DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class366DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class366DeepPImpl.class deleted file mode 100644 index 5485d4fdd26f5578ed763b108877745e878f8655..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class366DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class367DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class367DeepPImpl.class deleted file mode 100644 index 46c85cb6e56d198ee545149ea6b6294ae1eb8ecb..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class367DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class368DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class368DeepPImpl.class deleted file mode 100644 index 71b43d7b490ccaeaa97334b43c5e2586061b18c9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class368DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class369DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class369DeepPImpl.class deleted file mode 100644 index 63fd0b8ad91e1fb8e5111ca5a9907848b5c6128f..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class369DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class370DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class370DeepPImpl.class deleted file mode 100644 index 8d03c8b1ab40d5e1d84883c45dab1300d9b1b004..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class370DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class371DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class371DeepPImpl.class deleted file mode 100644 index 596b3fb2af9c85870b2c3862fb74477e0c510e0b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class371DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class372DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class372DeepPImpl.class deleted file mode 100644 index f461458a49a220baa9f495ab78dec2e4995b2085..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class372DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class373DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class373DeepPImpl.class deleted file mode 100644 index 9038200e067564e73fa27eb0da811f9cca432112..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class373DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class374DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class374DeepPImpl.class deleted file mode 100644 index ab0c328ad953442518caa0fb49d4f4a60ec0df18..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class374DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class375DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class375DeepPImpl.class deleted file mode 100644 index 533a0e06e77370768ab9140e52dbc702b9f4c355..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Class375DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Mm8DeepCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Mm8DeepCloningMaterial.class deleted file mode 100644 index 7d27884282db3824d40cf3c01dc0dbff1de60ee6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Mm8DeepCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Mm8DeepLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Mm8DeepLightCopier.class deleted file mode 100644 index c652e9ef1c942f17f9985b1d1830f75efa4805c5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Mm8DeepLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Mm8DeepTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Mm8DeepTags.class deleted file mode 100644 index d2633584482e734e068c80a84d38ff0b52153b93..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8deep/Mm8DeepTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8modelcreator/Mm8ModelCreator.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8modelcreator/Mm8ModelCreator.class deleted file mode 100644 index 29b54a8a6003be3f765427e304dfff3ece192818..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8modelcreator/Mm8ModelCreator.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class365MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class365MutClassOnlyPImpl.class deleted file mode 100644 index 8ebe2937abef152db0a9168c91a2d26a69d14916..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class365MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class366MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class366MutClassOnlyPImpl.class deleted file mode 100644 index fd282e0b656190cf958b415a4a9953d161c04a99..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class366MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class367MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class367MutClassOnlyPImpl.class deleted file mode 100644 index 5582112b60865bf38d478cf7bf72ccd1f5b269e8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class367MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class368MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class368MutClassOnlyPImpl.class deleted file mode 100644 index 06faba2ac87c49caeba47269353f17e23f1990c7..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class368MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class369MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class369MutClassOnlyPImpl.class deleted file mode 100644 index eb537fa1eeb782de5661d797da519accebf374c9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class369MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class370MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class370MutClassOnlyPImpl.class deleted file mode 100644 index 451425f1b4c8e3e88b1a78bb1ef8469c5b9b4c75..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class370MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class371MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class371MutClassOnlyPImpl.class deleted file mode 100644 index db549dce034a51ceeeb43cd3fe28a34d0c22f546..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class371MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class372MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class372MutClassOnlyPImpl.class deleted file mode 100644 index 81b2040b84898f2cbe1058fc4f905d8133c7b7c6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class372MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class373MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class373MutClassOnlyPImpl.class deleted file mode 100644 index fd9c24196feefe9de1fbb37c635e5694d6ba24c0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class373MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class374MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class374MutClassOnlyPImpl.class deleted file mode 100644 index 25d289ec59db0aecbbcce4e343606b8862aad42b..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class374MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class375MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class375MutClassOnlyPImpl.class deleted file mode 100644 index 233893ac1f168d8e8d2174cc3445f9cef66baf17..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Class375MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Mm8MutClassOnlyCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Mm8MutClassOnlyCloningMaterial.class deleted file mode 100644 index 366f6e54b9f142c7ee53c656b43838a0fffd359c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Mm8MutClassOnlyCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Mm8MutClassOnlyLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Mm8MutClassOnlyLightCopier.class deleted file mode 100644 index 7a01f63341a4c33e85764e7987f45938895c0a3a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Mm8MutClassOnlyLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Mm8MutClassOnlyTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Mm8MutClassOnlyTags.class deleted file mode 100644 index d2b6266eee32e4abdc37efb1acd21b627db9a327..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm8mutclassonly/Mm8MutClassOnlyTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class376.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class376.class deleted file mode 100644 index 301d6cfddc8be2cec26ea811ea1ab5454e2bced6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class376.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class377.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class377.class deleted file mode 100644 index 16813f85905555203f38b57c460afa71ce5d8290..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class377.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class378.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class378.class deleted file mode 100644 index a4f615993bd587bdb2bb3b1c20d4b2a3f78c39a2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class378.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class379.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class379.class deleted file mode 100644 index 5caebb46d043a52944d16e23ec9966e3e674b3cf..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class379.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class380.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class380.class deleted file mode 100644 index 4ff84deeb02dedb868bd8a872b77737f7099b98e..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Class380.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Mm9Factory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Mm9Factory.class deleted file mode 100644 index 3e3a04058d072a5a54a97075eb809b5bde1956d2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Mm9Factory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Mm9Package$Literals.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Mm9Package$Literals.class deleted file mode 100644 index 5fcaef77a55bbaee710544798323b4e143971512..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Mm9Package$Literals.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Mm9Package.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Mm9Package.class deleted file mode 100644 index 9b26a9b237360ae42105548b6d02e974033bfc28..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/Mm9Package.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class376Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class376Impl.class deleted file mode 100644 index 15730aad1971f5d8d259d1ace5c020bf2d9275b5..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class376Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class377Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class377Impl.class deleted file mode 100644 index a643d8dbd180b1c086a906c11ec30f2818fcb8aa..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class377Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class378Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class378Impl.class deleted file mode 100644 index 24baf9f91e12df2f4b8a88296f00a6a4667f66c0..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class378Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class379Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class379Impl.class deleted file mode 100644 index c92ae2c782961d499e90bd02d53b65bc64b1e88c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class379Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class380Impl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class380Impl.class deleted file mode 100644 index ac651acb79eead85b56248b525fc09e133f33ce1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Class380Impl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Mm9FactoryImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Mm9FactoryImpl.class deleted file mode 100644 index 360ed989394a5550a7d5c30e84320264b5dc6b35..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Mm9FactoryImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Mm9PackageImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Mm9PackageImpl.class deleted file mode 100644 index 99959fd5c88ede6b243124ed65929a6d64513079..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/impl/Mm9PackageImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/util/Mm9AdapterFactory$1.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/util/Mm9AdapterFactory$1.class deleted file mode 100644 index f2113fbacceb6e92e7e12d85b1680371fd1deff6..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/util/Mm9AdapterFactory$1.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/util/Mm9AdapterFactory.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/util/Mm9AdapterFactory.class deleted file mode 100644 index 4e2231c9ab55cf52fcf137553ad52fc4e325efbd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/util/Mm9AdapterFactory.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/util/Mm9Switch.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9/util/Mm9Switch.class deleted file mode 100644 index 45c7101d823d13ff14efd0f0610a95407e3f3001..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9/util/Mm9Switch.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class376DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class376DeepPImpl.class deleted file mode 100644 index 297ffcf30e770d30e1df499e9572b7c4f9d499d8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class376DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class377DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class377DeepPImpl.class deleted file mode 100644 index 9f5adb3a97ad366e5784d2f70d51638fb5799661..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class377DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class378DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class378DeepPImpl.class deleted file mode 100644 index 5480e077a225c939e91d2285c59b376689f5906c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class378DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class379DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class379DeepPImpl.class deleted file mode 100644 index 2ddb66f25189ee5e63742f9b166cb7d5231854ef..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class379DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class380DeepPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class380DeepPImpl.class deleted file mode 100644 index ff4f51baf067f18acaeffc0bf054ab1e5e3b9c14..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Class380DeepPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Mm9DeepCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Mm9DeepCloningMaterial.class deleted file mode 100644 index c7f00e654a4af9c8f685b05ad9d2c519459f8823..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Mm9DeepCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Mm9DeepLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Mm9DeepLightCopier.class deleted file mode 100644 index 9aecde4e7431a594ed11b90353f64b829b933855..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Mm9DeepLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Mm9DeepTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Mm9DeepTags.class deleted file mode 100644 index c2ab90b42567861f4b539fb9d404f1c973687cfd..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9deep/Mm9DeepTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9modelcreator/Mm9ModelCreator.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9modelcreator/Mm9ModelCreator.class deleted file mode 100644 index e21b560da06e68bc52fe10b6cd2c3809ff2817a2..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9modelcreator/Mm9ModelCreator.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class376MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class376MutClassOnlyPImpl.class deleted file mode 100644 index 4a7f555a9e8a0ae86aaab14818c44c4d1c0178d1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class376MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class377MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class377MutClassOnlyPImpl.class deleted file mode 100644 index b94a84e8983bf07aa0c2e5c538df6ccb1f06605a..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class377MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class378MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class378MutClassOnlyPImpl.class deleted file mode 100644 index c5846cc47c9bfc7a038e4b8a28514521763f65da..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class378MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class379MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class379MutClassOnlyPImpl.class deleted file mode 100644 index 76bc7e6531a1c661b01c2b6dac32c8b66f496038..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class379MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class380MutClassOnlyPImpl.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class380MutClassOnlyPImpl.class deleted file mode 100644 index 227940d5fdc383bbea6f5ab4f6cb046a8f6d972c..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Class380MutClassOnlyPImpl.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Mm9MutClassOnlyCloningMaterial.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Mm9MutClassOnlyCloningMaterial.class deleted file mode 100644 index 71161ad0712f9467a1ff4c198bd4ce3a237020f9..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Mm9MutClassOnlyCloningMaterial.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Mm9MutClassOnlyLightCopier.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Mm9MutClassOnlyLightCopier.class deleted file mode 100644 index b02f0b5493a7bea044e8cc678dc74338acf675b8..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Mm9MutClassOnlyLightCopier.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Mm9MutClassOnlyTags.class b/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Mm9MutClassOnlyTags.class deleted file mode 100644 index 5ec20cbc51de323328c2c6bcab544ad5c0b403f1..0000000000000000000000000000000000000000 Binary files a/cloningBenchmarkMaterial5921503524522529258/bin/mm9mutclassonly/Mm9MutClassOnlyTags.class and /dev/null differ diff --git a/cloningBenchmarkMaterial5921503524522529258/component.xml b/cloningBenchmarkMaterial5921503524522529258/component.xml deleted file mode 100644 index e9307a90f09dc9f9f0cf95276d8ca9b0c64c17d8..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/component.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/cloningBenchmarkMaterial5921503524522529258/src/cloningbenchmark/Activator.java b/cloningBenchmarkMaterial5921503524522529258/src/cloningbenchmark/Activator.java deleted file mode 100644 index 1ae08a37c7bb9ffa9582af7736af41a779c3fb74..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/cloningbenchmark/Activator.java +++ /dev/null @@ -1,25 +0,0 @@ -package cloningbenchmark; - -import org.osgi.framework.BundleActivator; -import org.osgi.framework.BundleContext; - -import fr.inria.diverse.cloning.benchmark.common.BenchmarkMaterial; - -public class Activator implements BundleActivator { - private static BundleContext context; - - static BundleContext getContext() { - return context; - } - - public void start(BundleContext bundleContext) throws Exception { - Activator.context = bundleContext; - context.registerService( - "fr.inria.diverse.cloning.benchmark.common.BenchmarkMaterial", - new BenchmarkMaterialImpl(), null); - } - - public void stop(BundleContext bundleContext) throws Exception { - Activator.context = null; - } -} \ No newline at end of file diff --git a/cloningBenchmarkMaterial5921503524522529258/src/cloningbenchmark/BenchmarkMaterialImpl.java b/cloningBenchmarkMaterial5921503524522529258/src/cloningbenchmark/BenchmarkMaterialImpl.java deleted file mode 100644 index 6b5605b42b07e906f16e797029c7c23e2efaaa9e..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/cloningbenchmark/BenchmarkMaterialImpl.java +++ /dev/null @@ -1,217 +0,0 @@ -package cloningbenchmark; - -import fr.inria.diverse.cloning.benchmark.common.BenchmarkMaterial; -import fr.inria.diverse.cloning.benchmark.common.MetamodelMetrics; -import fr.inria.diverse.cloning.benchmark.common.ModelCreator; -import fr.inria.diverse.cloning.cloner.common.CloningMaterial; - -import java.util.List; -import java.util.ArrayList; - -import mm0modelcreator.Mm0ModelCreator; -import mm1modelcreator.Mm1ModelCreator; -import mm2modelcreator.Mm2ModelCreator; -import mm3modelcreator.Mm3ModelCreator; -import mm4modelcreator.Mm4ModelCreator; -import mm5modelcreator.Mm5ModelCreator; -import mm6modelcreator.Mm6ModelCreator; -import mm7modelcreator.Mm7ModelCreator; -import mm8modelcreator.Mm8ModelCreator; -import mm9modelcreator.Mm9ModelCreator; -import mm0deep.Mm0DeepCloningMaterial; -import mm0mutclassonly.Mm0MutClassOnlyCloningMaterial; -import mm1deep.Mm1DeepCloningMaterial; -import mm1mutclassonly.Mm1MutClassOnlyCloningMaterial; -import mm2deep.Mm2DeepCloningMaterial; -import mm2mutclassonly.Mm2MutClassOnlyCloningMaterial; -import mm3deep.Mm3DeepCloningMaterial; -import mm3mutclassonly.Mm3MutClassOnlyCloningMaterial; -import mm4deep.Mm4DeepCloningMaterial; -import mm4mutclassonly.Mm4MutClassOnlyCloningMaterial; -import mm5deep.Mm5DeepCloningMaterial; -import mm5mutclassonly.Mm5MutClassOnlyCloningMaterial; -import mm6deep.Mm6DeepCloningMaterial; -import mm6mutclassonly.Mm6MutClassOnlyCloningMaterial; -import mm7deep.Mm7DeepCloningMaterial; -import mm7mutclassonly.Mm7MutClassOnlyCloningMaterial; -import mm8deep.Mm8DeepCloningMaterial; -import mm8mutclassonly.Mm8MutClassOnlyCloningMaterial; -import mm9deep.Mm9DeepCloningMaterial; -import mm9mutclassonly.Mm9MutClassOnlyCloningMaterial; - -public class BenchmarkMaterialImpl implements BenchmarkMaterial { - public List getMetamodelsName() { - List result = new ArrayList(); - result.add("mm0"); - result.add("mm1"); - result.add("mm2"); - result.add("mm3"); - result.add("mm4"); - result.add("mm5"); - result.add("mm6"); - result.add("mm7"); - result.add("mm8"); - result.add("mm9"); - return result; - } - - public List getCloningNames() { - List result = new ArrayList(); - result.add("Deep"); - result.add("MutClassOnly"); - return result; - } - - public ModelCreator getModelCreator(String metamodelName) { - switch (metamodelName.toLowerCase()) { - case "mm0": - return Mm0ModelCreator.getInstance(); - case "mm1": - return Mm1ModelCreator.getInstance(); - case "mm2": - return Mm2ModelCreator.getInstance(); - case "mm3": - return Mm3ModelCreator.getInstance(); - case "mm4": - return Mm4ModelCreator.getInstance(); - case "mm5": - return Mm5ModelCreator.getInstance(); - case "mm6": - return Mm6ModelCreator.getInstance(); - case "mm7": - return Mm7ModelCreator.getInstance(); - case "mm8": - return Mm8ModelCreator.getInstance(); - case "mm9": - return Mm9ModelCreator.getInstance(); - default: - return null; - } - } - - public CloningMaterial getCloningMaterial(String metamodelName, - String cloningName) { - switch (metamodelName.toLowerCase()) { - case "mm0": - switch (cloningName.toLowerCase()) { - case "deep": - return Mm0DeepCloningMaterial.getInstance(); - case "mutclassonly": - return Mm0MutClassOnlyCloningMaterial.getInstance(); - default: - return null; - } - case "mm1": - switch (cloningName.toLowerCase()) { - case "deep": - return Mm1DeepCloningMaterial.getInstance(); - case "mutclassonly": - return Mm1MutClassOnlyCloningMaterial.getInstance(); - default: - return null; - } - case "mm2": - switch (cloningName.toLowerCase()) { - case "deep": - return Mm2DeepCloningMaterial.getInstance(); - case "mutclassonly": - return Mm2MutClassOnlyCloningMaterial.getInstance(); - default: - return null; - } - case "mm3": - switch (cloningName.toLowerCase()) { - case "deep": - return Mm3DeepCloningMaterial.getInstance(); - case "mutclassonly": - return Mm3MutClassOnlyCloningMaterial.getInstance(); - default: - return null; - } - case "mm4": - switch (cloningName.toLowerCase()) { - case "deep": - return Mm4DeepCloningMaterial.getInstance(); - case "mutclassonly": - return Mm4MutClassOnlyCloningMaterial.getInstance(); - default: - return null; - } - case "mm5": - switch (cloningName.toLowerCase()) { - case "deep": - return Mm5DeepCloningMaterial.getInstance(); - case "mutclassonly": - return Mm5MutClassOnlyCloningMaterial.getInstance(); - default: - return null; - } - case "mm6": - switch (cloningName.toLowerCase()) { - case "deep": - return Mm6DeepCloningMaterial.getInstance(); - case "mutclassonly": - return Mm6MutClassOnlyCloningMaterial.getInstance(); - default: - return null; - } - case "mm7": - switch (cloningName.toLowerCase()) { - case "deep": - return Mm7DeepCloningMaterial.getInstance(); - case "mutclassonly": - return Mm7MutClassOnlyCloningMaterial.getInstance(); - default: - return null; - } - case "mm8": - switch (cloningName.toLowerCase()) { - case "deep": - return Mm8DeepCloningMaterial.getInstance(); - case "mutclassonly": - return Mm8MutClassOnlyCloningMaterial.getInstance(); - default: - return null; - } - case "mm9": - switch (cloningName.toLowerCase()) { - case "deep": - return Mm9DeepCloningMaterial.getInstance(); - case "mutclassonly": - return Mm9MutClassOnlyCloningMaterial.getInstance(); - default: - return null; - } - default: - return null; - } - } - - public MetamodelMetrics getMetrics(String metamodelName) { - switch (metamodelName) { - case "mm0": - return new MetamodelMetrics(185, 28, 157, 14, 3, 11, 11); - case "mm1": - return new MetamodelMetrics(154, 27, 127, 44, 12, 32, 6); - case "mm2": - return new MetamodelMetrics(79, 32, 47, 24, 4, 20, 69); - case "mm3": - return new MetamodelMetrics(161, 55, 106, 26, 7, 19, 54); - case "mm4": - return new MetamodelMetrics(182, 51, 131, 8, 0, 8, 21); - case "mm5": - return new MetamodelMetrics(191, 58, 133, 10, 1, 9, 80); - case "mm6": - return new MetamodelMetrics(112, 43, 69, 34, 9, 25, 70); - case "mm7": - return new MetamodelMetrics(283, 73, 210, 18, 9, 9, 54); - case "mm8": - return new MetamodelMetrics(221, 46, 175, 31, 8, 23, 11); - case "mm9": - return new MetamodelMetrics(191, 38, 153, 7, 2, 5, 5); - default: - return null; - } - } -} - diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class0.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class0.java deleted file mode 100644 index 3f026699428c8af635601dd22812bffc3dccd2ad..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class0.java +++ /dev/null @@ -1,563 +0,0 @@ -/** - */ -package mm0; - -import org.eclipse.emf.ecore.EObject; - -/** - * - * A representation of the model object 'Class0'. - * - * - *

- * The following features are supported: - *

    - *
  • {@link mm0.Class0#isAttEBoolean_20 Att EBoolean 20}
  • - *
  • {@link mm0.Class0#getAttEInt_23 Att EInt 23}
  • - *
  • {@link mm0.Class0#getAttEInt_27 Att EInt 27}
  • - *
  • {@link mm0.Class0#getRefClass9_41 Ref Class9 41}
  • - *
  • {@link mm0.Class0#isAttEBoolean_49 Att EBoolean 49}
  • - *
  • {@link mm0.Class0#getAttEInt_53 Att EInt 53}
  • - *
  • {@link mm0.Class0#getAttEInt_63 Att EInt 63}
  • - *
  • {@link mm0.Class0#getAttEInt_66 Att EInt 66}
  • - *
  • {@link mm0.Class0#getAttEInt_72 Att EInt 72}
  • - *
  • {@link mm0.Class0#isAttEBoolean_90 Att EBoolean 90}
  • - *
  • {@link mm0.Class0#getAttEInt_94 Att EInt 94}
  • - *
  • {@link mm0.Class0#getAttEInt_107 Att EInt 107}
  • - *
  • {@link mm0.Class0#getAttEInt_108 Att EInt 108}
  • - *
  • {@link mm0.Class0#isAttEBoolean_116 Att EBoolean 116}
  • - *
  • {@link mm0.Class0#getAttEInt_120 Att EInt 120}
  • - *
  • {@link mm0.Class0#getAttEInt_133 Att EInt 133}
  • - *
  • {@link mm0.Class0#getAttEInt_135 Att EInt 135}
  • - *
  • {@link mm0.Class0#isAttEBoolean_149 Att EBoolean 149}
  • - *
  • {@link mm0.Class0#getRefClass5_172_m Ref Class5 172 m}
  • - *
  • {@link mm0.Class0#getRefClass9_180_m Ref Class9 180 m}
  • - *
- *

- * - * @see mm0.Mm0Package#getClass0() - * @model - * @generated - */ -public interface Class0 extends EObject { - /** - * Returns the value of the 'Att EBoolean 20' attribute. - * - *

- * If the meaning of the 'Att EBoolean 20' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 20' attribute. - * @see #setAttEBoolean_20(boolean) - * @see mm0.Mm0Package#getClass0_AttEBoolean_20() - * @model - * @generated - */ - boolean isAttEBoolean_20(); - - /** - * Sets the value of the '{@link mm0.Class0#isAttEBoolean_20 Att EBoolean 20}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 20' attribute. - * @see #isAttEBoolean_20() - * @generated - */ - void setAttEBoolean_20(boolean value); - - /** - * Returns the value of the 'Att EInt 23' attribute. - * - *

- * If the meaning of the 'Att EInt 23' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 23' attribute. - * @see #setAttEInt_23(int) - * @see mm0.Mm0Package#getClass0_AttEInt_23() - * @model - * @generated - */ - int getAttEInt_23(); - - /** - * Sets the value of the '{@link mm0.Class0#getAttEInt_23 Att EInt 23}' attribute. - * - * - * @param value the new value of the 'Att EInt 23' attribute. - * @see #getAttEInt_23() - * @generated - */ - void setAttEInt_23(int value); - - /** - * Returns the value of the 'Att EInt 27' attribute. - * - *

- * If the meaning of the 'Att EInt 27' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 27' attribute. - * @see #setAttEInt_27(int) - * @see mm0.Mm0Package#getClass0_AttEInt_27() - * @model - * @generated - */ - int getAttEInt_27(); - - /** - * Sets the value of the '{@link mm0.Class0#getAttEInt_27 Att EInt 27}' attribute. - * - * - * @param value the new value of the 'Att EInt 27' attribute. - * @see #getAttEInt_27() - * @generated - */ - void setAttEInt_27(int value); - - /** - * Returns the value of the 'Ref Class9 41' reference. - * - *

- * If the meaning of the 'Ref Class9 41' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class9 41' reference. - * @see #setRefClass9_41(Class9) - * @see mm0.Mm0Package#getClass0_RefClass9_41() - * @model - * @generated - */ - Class9 getRefClass9_41(); - - /** - * Sets the value of the '{@link mm0.Class0#getRefClass9_41 Ref Class9 41}' reference. - * - * - * @param value the new value of the 'Ref Class9 41' reference. - * @see #getRefClass9_41() - * @generated - */ - void setRefClass9_41(Class9 value); - - /** - * Returns the value of the 'Att EBoolean 49' attribute. - * - *

- * If the meaning of the 'Att EBoolean 49' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 49' attribute. - * @see #setAttEBoolean_49(boolean) - * @see mm0.Mm0Package#getClass0_AttEBoolean_49() - * @model - * @generated - */ - boolean isAttEBoolean_49(); - - /** - * Sets the value of the '{@link mm0.Class0#isAttEBoolean_49 Att EBoolean 49}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 49' attribute. - * @see #isAttEBoolean_49() - * @generated - */ - void setAttEBoolean_49(boolean value); - - /** - * Returns the value of the 'Att EInt 53' attribute. - * - *

- * If the meaning of the 'Att EInt 53' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 53' attribute. - * @see #setAttEInt_53(int) - * @see mm0.Mm0Package#getClass0_AttEInt_53() - * @model - * @generated - */ - int getAttEInt_53(); - - /** - * Sets the value of the '{@link mm0.Class0#getAttEInt_53 Att EInt 53}' attribute. - * - * - * @param value the new value of the 'Att EInt 53' attribute. - * @see #getAttEInt_53() - * @generated - */ - void setAttEInt_53(int value); - - /** - * Returns the value of the 'Att EInt 63' attribute. - * - *

- * If the meaning of the 'Att EInt 63' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 63' attribute. - * @see #setAttEInt_63(int) - * @see mm0.Mm0Package#getClass0_AttEInt_63() - * @model - * @generated - */ - int getAttEInt_63(); - - /** - * Sets the value of the '{@link mm0.Class0#getAttEInt_63 Att EInt 63}' attribute. - * - * - * @param value the new value of the 'Att EInt 63' attribute. - * @see #getAttEInt_63() - * @generated - */ - void setAttEInt_63(int value); - - /** - * Returns the value of the 'Att EInt 66' attribute. - * - *

- * If the meaning of the 'Att EInt 66' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 66' attribute. - * @see #setAttEInt_66(int) - * @see mm0.Mm0Package#getClass0_AttEInt_66() - * @model - * @generated - */ - int getAttEInt_66(); - - /** - * Sets the value of the '{@link mm0.Class0#getAttEInt_66 Att EInt 66}' attribute. - * - * - * @param value the new value of the 'Att EInt 66' attribute. - * @see #getAttEInt_66() - * @generated - */ - void setAttEInt_66(int value); - - /** - * Returns the value of the 'Att EInt 72' attribute. - * - *

- * If the meaning of the 'Att EInt 72' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 72' attribute. - * @see #setAttEInt_72(int) - * @see mm0.Mm0Package#getClass0_AttEInt_72() - * @model - * @generated - */ - int getAttEInt_72(); - - /** - * Sets the value of the '{@link mm0.Class0#getAttEInt_72 Att EInt 72}' attribute. - * - * - * @param value the new value of the 'Att EInt 72' attribute. - * @see #getAttEInt_72() - * @generated - */ - void setAttEInt_72(int value); - - /** - * Returns the value of the 'Att EBoolean 90' attribute. - * - *

- * If the meaning of the 'Att EBoolean 90' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 90' attribute. - * @see #setAttEBoolean_90(boolean) - * @see mm0.Mm0Package#getClass0_AttEBoolean_90() - * @model - * @generated - */ - boolean isAttEBoolean_90(); - - /** - * Sets the value of the '{@link mm0.Class0#isAttEBoolean_90 Att EBoolean 90}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 90' attribute. - * @see #isAttEBoolean_90() - * @generated - */ - void setAttEBoolean_90(boolean value); - - /** - * Returns the value of the 'Att EInt 94' attribute. - * - *

- * If the meaning of the 'Att EInt 94' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 94' attribute. - * @see #setAttEInt_94(int) - * @see mm0.Mm0Package#getClass0_AttEInt_94() - * @model - * @generated - */ - int getAttEInt_94(); - - /** - * Sets the value of the '{@link mm0.Class0#getAttEInt_94 Att EInt 94}' attribute. - * - * - * @param value the new value of the 'Att EInt 94' attribute. - * @see #getAttEInt_94() - * @generated - */ - void setAttEInt_94(int value); - - /** - * Returns the value of the 'Att EInt 107' attribute. - * - *

- * If the meaning of the 'Att EInt 107' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 107' attribute. - * @see #setAttEInt_107(int) - * @see mm0.Mm0Package#getClass0_AttEInt_107() - * @model - * @generated - */ - int getAttEInt_107(); - - /** - * Sets the value of the '{@link mm0.Class0#getAttEInt_107 Att EInt 107}' attribute. - * - * - * @param value the new value of the 'Att EInt 107' attribute. - * @see #getAttEInt_107() - * @generated - */ - void setAttEInt_107(int value); - - /** - * Returns the value of the 'Att EInt 108' attribute. - * - *

- * If the meaning of the 'Att EInt 108' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 108' attribute. - * @see #setAttEInt_108(int) - * @see mm0.Mm0Package#getClass0_AttEInt_108() - * @model - * @generated - */ - int getAttEInt_108(); - - /** - * Sets the value of the '{@link mm0.Class0#getAttEInt_108 Att EInt 108}' attribute. - * - * - * @param value the new value of the 'Att EInt 108' attribute. - * @see #getAttEInt_108() - * @generated - */ - void setAttEInt_108(int value); - - /** - * Returns the value of the 'Att EBoolean 116' attribute. - * - *

- * If the meaning of the 'Att EBoolean 116' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 116' attribute. - * @see #setAttEBoolean_116(boolean) - * @see mm0.Mm0Package#getClass0_AttEBoolean_116() - * @model - * @generated - */ - boolean isAttEBoolean_116(); - - /** - * Sets the value of the '{@link mm0.Class0#isAttEBoolean_116 Att EBoolean 116}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 116' attribute. - * @see #isAttEBoolean_116() - * @generated - */ - void setAttEBoolean_116(boolean value); - - /** - * Returns the value of the 'Att EInt 120' attribute. - * - *

- * If the meaning of the 'Att EInt 120' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 120' attribute. - * @see #setAttEInt_120(int) - * @see mm0.Mm0Package#getClass0_AttEInt_120() - * @model - * @generated - */ - int getAttEInt_120(); - - /** - * Sets the value of the '{@link mm0.Class0#getAttEInt_120 Att EInt 120}' attribute. - * - * - * @param value the new value of the 'Att EInt 120' attribute. - * @see #getAttEInt_120() - * @generated - */ - void setAttEInt_120(int value); - - /** - * Returns the value of the 'Att EInt 133' attribute. - * - *

- * If the meaning of the 'Att EInt 133' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 133' attribute. - * @see #setAttEInt_133(int) - * @see mm0.Mm0Package#getClass0_AttEInt_133() - * @model - * @generated - */ - int getAttEInt_133(); - - /** - * Sets the value of the '{@link mm0.Class0#getAttEInt_133 Att EInt 133}' attribute. - * - * - * @param value the new value of the 'Att EInt 133' attribute. - * @see #getAttEInt_133() - * @generated - */ - void setAttEInt_133(int value); - - /** - * Returns the value of the 'Att EInt 135' attribute. - * - *

- * If the meaning of the 'Att EInt 135' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 135' attribute. - * @see #setAttEInt_135(int) - * @see mm0.Mm0Package#getClass0_AttEInt_135() - * @model - * @generated - */ - int getAttEInt_135(); - - /** - * Sets the value of the '{@link mm0.Class0#getAttEInt_135 Att EInt 135}' attribute. - * - * - * @param value the new value of the 'Att EInt 135' attribute. - * @see #getAttEInt_135() - * @generated - */ - void setAttEInt_135(int value); - - /** - * Returns the value of the 'Att EBoolean 149' attribute. - * - *

- * If the meaning of the 'Att EBoolean 149' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 149' attribute. - * @see #setAttEBoolean_149(boolean) - * @see mm0.Mm0Package#getClass0_AttEBoolean_149() - * @model - * @generated - */ - boolean isAttEBoolean_149(); - - /** - * Sets the value of the '{@link mm0.Class0#isAttEBoolean_149 Att EBoolean 149}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 149' attribute. - * @see #isAttEBoolean_149() - * @generated - */ - void setAttEBoolean_149(boolean value); - - /** - * Returns the value of the 'Ref Class5 172 m' reference. - * - *

- * If the meaning of the 'Ref Class5 172 m' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class5 172 m' reference. - * @see #setRefClass5_172_m(Class5) - * @see mm0.Mm0Package#getClass0_RefClass5_172_m() - * @model - * @generated - */ - Class5 getRefClass5_172_m(); - - /** - * Sets the value of the '{@link mm0.Class0#getRefClass5_172_m Ref Class5 172 m}' reference. - * - * - * @param value the new value of the 'Ref Class5 172 m' reference. - * @see #getRefClass5_172_m() - * @generated - */ - void setRefClass5_172_m(Class5 value); - - /** - * Returns the value of the 'Ref Class9 180 m' reference. - * - *

- * If the meaning of the 'Ref Class9 180 m' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class9 180 m' reference. - * @see #setRefClass9_180_m(Class9) - * @see mm0.Mm0Package#getClass0_RefClass9_180_m() - * @model - * @generated - */ - Class9 getRefClass9_180_m(); - - /** - * Sets the value of the '{@link mm0.Class0#getRefClass9_180_m Ref Class9 180 m}' reference. - * - * - * @param value the new value of the 'Ref Class9 180 m' reference. - * @see #getRefClass9_180_m() - * @generated - */ - void setRefClass9_180_m(Class9 value); - -} // Class0 diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class1.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class1.java deleted file mode 100644 index 83fe24427f890d76dccce367be5a599315849e72..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class1.java +++ /dev/null @@ -1,347 +0,0 @@ -/** - */ -package mm0; - -import org.eclipse.emf.ecore.EObject; - -/** - * - * A representation of the model object 'Class1'. - * - * - *

- * The following features are supported: - *

    - *
  • {@link mm0.Class1#isAttEBoolean_1 Att EBoolean 1}
  • - *
  • {@link mm0.Class1#isAttEBoolean_13 Att EBoolean 13}
  • - *
  • {@link mm0.Class1#isAttEBoolean_46 Att EBoolean 46}
  • - *
  • {@link mm0.Class1#getRefClass9_54 Ref Class9 54}
  • - *
  • {@link mm0.Class1#getRefClass6_59 Ref Class6 59}
  • - *
  • {@link mm0.Class1#getRefClass10_80 Ref Class10 80}
  • - *
  • {@link mm0.Class1#getRefClass10_92 Ref Class10 92}
  • - *
  • {@link mm0.Class1#isAttEBoolean_98 Att EBoolean 98}
  • - *
  • {@link mm0.Class1#isAttEBoolean_127 Att EBoolean 127}
  • - *
  • {@link mm0.Class1#isAttEBoolean_148 Att EBoolean 148}
  • - *
  • {@link mm0.Class1#getAttEInt_154 Att EInt 154}
  • - *
  • {@link mm0.Class1#getAttEInt_175_m Att EInt 175 m}
  • - *
- *

- * - * @see mm0.Mm0Package#getClass1() - * @model - * @generated - */ -public interface Class1 extends EObject { - /** - * Returns the value of the 'Att EBoolean 1' attribute. - * - *

- * If the meaning of the 'Att EBoolean 1' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 1' attribute. - * @see #setAttEBoolean_1(boolean) - * @see mm0.Mm0Package#getClass1_AttEBoolean_1() - * @model - * @generated - */ - boolean isAttEBoolean_1(); - - /** - * Sets the value of the '{@link mm0.Class1#isAttEBoolean_1 Att EBoolean 1}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 1' attribute. - * @see #isAttEBoolean_1() - * @generated - */ - void setAttEBoolean_1(boolean value); - - /** - * Returns the value of the 'Att EBoolean 13' attribute. - * - *

- * If the meaning of the 'Att EBoolean 13' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 13' attribute. - * @see #setAttEBoolean_13(boolean) - * @see mm0.Mm0Package#getClass1_AttEBoolean_13() - * @model - * @generated - */ - boolean isAttEBoolean_13(); - - /** - * Sets the value of the '{@link mm0.Class1#isAttEBoolean_13 Att EBoolean 13}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 13' attribute. - * @see #isAttEBoolean_13() - * @generated - */ - void setAttEBoolean_13(boolean value); - - /** - * Returns the value of the 'Att EBoolean 46' attribute. - * - *

- * If the meaning of the 'Att EBoolean 46' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 46' attribute. - * @see #setAttEBoolean_46(boolean) - * @see mm0.Mm0Package#getClass1_AttEBoolean_46() - * @model - * @generated - */ - boolean isAttEBoolean_46(); - - /** - * Sets the value of the '{@link mm0.Class1#isAttEBoolean_46 Att EBoolean 46}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 46' attribute. - * @see #isAttEBoolean_46() - * @generated - */ - void setAttEBoolean_46(boolean value); - - /** - * Returns the value of the 'Ref Class9 54' reference. - * - *

- * If the meaning of the 'Ref Class9 54' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class9 54' reference. - * @see #setRefClass9_54(Class9) - * @see mm0.Mm0Package#getClass1_RefClass9_54() - * @model - * @generated - */ - Class9 getRefClass9_54(); - - /** - * Sets the value of the '{@link mm0.Class1#getRefClass9_54 Ref Class9 54}' reference. - * - * - * @param value the new value of the 'Ref Class9 54' reference. - * @see #getRefClass9_54() - * @generated - */ - void setRefClass9_54(Class9 value); - - /** - * Returns the value of the 'Ref Class6 59' reference. - * - *

- * If the meaning of the 'Ref Class6 59' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class6 59' reference. - * @see #setRefClass6_59(Class6) - * @see mm0.Mm0Package#getClass1_RefClass6_59() - * @model - * @generated - */ - Class6 getRefClass6_59(); - - /** - * Sets the value of the '{@link mm0.Class1#getRefClass6_59 Ref Class6 59}' reference. - * - * - * @param value the new value of the 'Ref Class6 59' reference. - * @see #getRefClass6_59() - * @generated - */ - void setRefClass6_59(Class6 value); - - /** - * Returns the value of the 'Ref Class10 80' reference. - * - *

- * If the meaning of the 'Ref Class10 80' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class10 80' reference. - * @see #setRefClass10_80(Class10) - * @see mm0.Mm0Package#getClass1_RefClass10_80() - * @model - * @generated - */ - Class10 getRefClass10_80(); - - /** - * Sets the value of the '{@link mm0.Class1#getRefClass10_80 Ref Class10 80}' reference. - * - * - * @param value the new value of the 'Ref Class10 80' reference. - * @see #getRefClass10_80() - * @generated - */ - void setRefClass10_80(Class10 value); - - /** - * Returns the value of the 'Ref Class10 92' reference. - * - *

- * If the meaning of the 'Ref Class10 92' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class10 92' reference. - * @see #setRefClass10_92(Class10) - * @see mm0.Mm0Package#getClass1_RefClass10_92() - * @model - * @generated - */ - Class10 getRefClass10_92(); - - /** - * Sets the value of the '{@link mm0.Class1#getRefClass10_92 Ref Class10 92}' reference. - * - * - * @param value the new value of the 'Ref Class10 92' reference. - * @see #getRefClass10_92() - * @generated - */ - void setRefClass10_92(Class10 value); - - /** - * Returns the value of the 'Att EBoolean 98' attribute. - * - *

- * If the meaning of the 'Att EBoolean 98' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 98' attribute. - * @see #setAttEBoolean_98(boolean) - * @see mm0.Mm0Package#getClass1_AttEBoolean_98() - * @model - * @generated - */ - boolean isAttEBoolean_98(); - - /** - * Sets the value of the '{@link mm0.Class1#isAttEBoolean_98 Att EBoolean 98}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 98' attribute. - * @see #isAttEBoolean_98() - * @generated - */ - void setAttEBoolean_98(boolean value); - - /** - * Returns the value of the 'Att EBoolean 127' attribute. - * - *

- * If the meaning of the 'Att EBoolean 127' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 127' attribute. - * @see #setAttEBoolean_127(boolean) - * @see mm0.Mm0Package#getClass1_AttEBoolean_127() - * @model - * @generated - */ - boolean isAttEBoolean_127(); - - /** - * Sets the value of the '{@link mm0.Class1#isAttEBoolean_127 Att EBoolean 127}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 127' attribute. - * @see #isAttEBoolean_127() - * @generated - */ - void setAttEBoolean_127(boolean value); - - /** - * Returns the value of the 'Att EBoolean 148' attribute. - * - *

- * If the meaning of the 'Att EBoolean 148' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 148' attribute. - * @see #setAttEBoolean_148(boolean) - * @see mm0.Mm0Package#getClass1_AttEBoolean_148() - * @model - * @generated - */ - boolean isAttEBoolean_148(); - - /** - * Sets the value of the '{@link mm0.Class1#isAttEBoolean_148 Att EBoolean 148}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 148' attribute. - * @see #isAttEBoolean_148() - * @generated - */ - void setAttEBoolean_148(boolean value); - - /** - * Returns the value of the 'Att EInt 154' attribute. - * - *

- * If the meaning of the 'Att EInt 154' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 154' attribute. - * @see #setAttEInt_154(int) - * @see mm0.Mm0Package#getClass1_AttEInt_154() - * @model - * @generated - */ - int getAttEInt_154(); - - /** - * Sets the value of the '{@link mm0.Class1#getAttEInt_154 Att EInt 154}' attribute. - * - * - * @param value the new value of the 'Att EInt 154' attribute. - * @see #getAttEInt_154() - * @generated - */ - void setAttEInt_154(int value); - - /** - * Returns the value of the 'Att EInt 175 m' attribute. - * - *

- * If the meaning of the 'Att EInt 175 m' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 175 m' attribute. - * @see #setAttEInt_175_m(int) - * @see mm0.Mm0Package#getClass1_AttEInt_175_m() - * @model - * @generated - */ - int getAttEInt_175_m(); - - /** - * Sets the value of the '{@link mm0.Class1#getAttEInt_175_m Att EInt 175 m}' attribute. - * - * - * @param value the new value of the 'Att EInt 175 m' attribute. - * @see #getAttEInt_175_m() - * @generated - */ - void setAttEInt_175_m(int value); - -} // Class1 diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class10.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class10.java deleted file mode 100644 index 8228dd18e14f44262f73d17d903bde51ebdf18c5..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class10.java +++ /dev/null @@ -1,644 +0,0 @@ -/** - */ -package mm0; - -import org.eclipse.emf.ecore.EObject; - -/** - * - * A representation of the model object 'Class10'. - * - * - *

- * The following features are supported: - *

    - *
  • {@link mm0.Class10#getRefClass3_2 Ref Class3 2}
  • - *
  • {@link mm0.Class10#getAttEInt_11 Att EInt 11}
  • - *
  • {@link mm0.Class10#isAttEBoolean_15 Att EBoolean 15}
  • - *
  • {@link mm0.Class10#getAttEInt_32 Att EInt 32}
  • - *
  • {@link mm0.Class10#getAttEInt_44 Att EInt 44}
  • - *
  • {@link mm0.Class10#isAttEBoolean_60 Att EBoolean 60}
  • - *
  • {@link mm0.Class10#getAttEInt_73 Att EInt 73}
  • - *
  • {@link mm0.Class10#isAttEBoolean_74 Att EBoolean 74}
  • - *
  • {@link mm0.Class10#isAttEBoolean_79 Att EBoolean 79}
  • - *
  • {@link mm0.Class10#getAttEInt_81 Att EInt 81}
  • - *
  • {@link mm0.Class10#getAttEInt_84 Att EInt 84}
  • - *
  • {@link mm0.Class10#getRefClass10_112 Ref Class10 112}
  • - *
  • {@link mm0.Class10#isAttEBoolean_118 Att EBoolean 118}
  • - *
  • {@link mm0.Class10#getRefClass9_119 Ref Class9 119}
  • - *
  • {@link mm0.Class10#getAttEInt_121 Att EInt 121}
  • - *
  • {@link mm0.Class10#isAttEBoolean_123 Att EBoolean 123}
  • - *
  • {@link mm0.Class10#getRefClass4_124 Ref Class4 124}
  • - *
  • {@link mm0.Class10#getAttEInt_125 Att EInt 125}
  • - *
  • {@link mm0.Class10#isAttEBoolean_128 Att EBoolean 128}
  • - *
  • {@link mm0.Class10#getAttEInt_144 Att EInt 144}
  • - *
  • {@link mm0.Class10#isAttEBoolean_152 Att EBoolean 152}
  • - *
  • {@link mm0.Class10#getAttEInt_173_m Att EInt 173 m}
  • - *
  • {@link mm0.Class10#getAttEInt_183_m Att EInt 183 m}
  • - *
- *

- * - * @see mm0.Mm0Package#getClass10() - * @model - * @generated - */ -public interface Class10 extends EObject { - /** - * Returns the value of the 'Ref Class3 2' reference. - * - *

- * If the meaning of the 'Ref Class3 2' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class3 2' reference. - * @see #setRefClass3_2(Class3) - * @see mm0.Mm0Package#getClass10_RefClass3_2() - * @model - * @generated - */ - Class3 getRefClass3_2(); - - /** - * Sets the value of the '{@link mm0.Class10#getRefClass3_2 Ref Class3 2}' reference. - * - * - * @param value the new value of the 'Ref Class3 2' reference. - * @see #getRefClass3_2() - * @generated - */ - void setRefClass3_2(Class3 value); - - /** - * Returns the value of the 'Att EInt 11' attribute. - * - *

- * If the meaning of the 'Att EInt 11' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 11' attribute. - * @see #setAttEInt_11(int) - * @see mm0.Mm0Package#getClass10_AttEInt_11() - * @model - * @generated - */ - int getAttEInt_11(); - - /** - * Sets the value of the '{@link mm0.Class10#getAttEInt_11 Att EInt 11}' attribute. - * - * - * @param value the new value of the 'Att EInt 11' attribute. - * @see #getAttEInt_11() - * @generated - */ - void setAttEInt_11(int value); - - /** - * Returns the value of the 'Att EBoolean 15' attribute. - * - *

- * If the meaning of the 'Att EBoolean 15' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 15' attribute. - * @see #setAttEBoolean_15(boolean) - * @see mm0.Mm0Package#getClass10_AttEBoolean_15() - * @model - * @generated - */ - boolean isAttEBoolean_15(); - - /** - * Sets the value of the '{@link mm0.Class10#isAttEBoolean_15 Att EBoolean 15}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 15' attribute. - * @see #isAttEBoolean_15() - * @generated - */ - void setAttEBoolean_15(boolean value); - - /** - * Returns the value of the 'Att EInt 32' attribute. - * - *

- * If the meaning of the 'Att EInt 32' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 32' attribute. - * @see #setAttEInt_32(int) - * @see mm0.Mm0Package#getClass10_AttEInt_32() - * @model - * @generated - */ - int getAttEInt_32(); - - /** - * Sets the value of the '{@link mm0.Class10#getAttEInt_32 Att EInt 32}' attribute. - * - * - * @param value the new value of the 'Att EInt 32' attribute. - * @see #getAttEInt_32() - * @generated - */ - void setAttEInt_32(int value); - - /** - * Returns the value of the 'Att EInt 44' attribute. - * - *

- * If the meaning of the 'Att EInt 44' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 44' attribute. - * @see #setAttEInt_44(int) - * @see mm0.Mm0Package#getClass10_AttEInt_44() - * @model - * @generated - */ - int getAttEInt_44(); - - /** - * Sets the value of the '{@link mm0.Class10#getAttEInt_44 Att EInt 44}' attribute. - * - * - * @param value the new value of the 'Att EInt 44' attribute. - * @see #getAttEInt_44() - * @generated - */ - void setAttEInt_44(int value); - - /** - * Returns the value of the 'Att EBoolean 60' attribute. - * - *

- * If the meaning of the 'Att EBoolean 60' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 60' attribute. - * @see #setAttEBoolean_60(boolean) - * @see mm0.Mm0Package#getClass10_AttEBoolean_60() - * @model - * @generated - */ - boolean isAttEBoolean_60(); - - /** - * Sets the value of the '{@link mm0.Class10#isAttEBoolean_60 Att EBoolean 60}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 60' attribute. - * @see #isAttEBoolean_60() - * @generated - */ - void setAttEBoolean_60(boolean value); - - /** - * Returns the value of the 'Att EInt 73' attribute. - * - *

- * If the meaning of the 'Att EInt 73' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 73' attribute. - * @see #setAttEInt_73(int) - * @see mm0.Mm0Package#getClass10_AttEInt_73() - * @model - * @generated - */ - int getAttEInt_73(); - - /** - * Sets the value of the '{@link mm0.Class10#getAttEInt_73 Att EInt 73}' attribute. - * - * - * @param value the new value of the 'Att EInt 73' attribute. - * @see #getAttEInt_73() - * @generated - */ - void setAttEInt_73(int value); - - /** - * Returns the value of the 'Att EBoolean 74' attribute. - * - *

- * If the meaning of the 'Att EBoolean 74' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 74' attribute. - * @see #setAttEBoolean_74(boolean) - * @see mm0.Mm0Package#getClass10_AttEBoolean_74() - * @model - * @generated - */ - boolean isAttEBoolean_74(); - - /** - * Sets the value of the '{@link mm0.Class10#isAttEBoolean_74 Att EBoolean 74}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 74' attribute. - * @see #isAttEBoolean_74() - * @generated - */ - void setAttEBoolean_74(boolean value); - - /** - * Returns the value of the 'Att EBoolean 79' attribute. - * - *

- * If the meaning of the 'Att EBoolean 79' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 79' attribute. - * @see #setAttEBoolean_79(boolean) - * @see mm0.Mm0Package#getClass10_AttEBoolean_79() - * @model - * @generated - */ - boolean isAttEBoolean_79(); - - /** - * Sets the value of the '{@link mm0.Class10#isAttEBoolean_79 Att EBoolean 79}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 79' attribute. - * @see #isAttEBoolean_79() - * @generated - */ - void setAttEBoolean_79(boolean value); - - /** - * Returns the value of the 'Att EInt 81' attribute. - * - *

- * If the meaning of the 'Att EInt 81' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 81' attribute. - * @see #setAttEInt_81(int) - * @see mm0.Mm0Package#getClass10_AttEInt_81() - * @model - * @generated - */ - int getAttEInt_81(); - - /** - * Sets the value of the '{@link mm0.Class10#getAttEInt_81 Att EInt 81}' attribute. - * - * - * @param value the new value of the 'Att EInt 81' attribute. - * @see #getAttEInt_81() - * @generated - */ - void setAttEInt_81(int value); - - /** - * Returns the value of the 'Att EInt 84' attribute. - * - *

- * If the meaning of the 'Att EInt 84' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 84' attribute. - * @see #setAttEInt_84(int) - * @see mm0.Mm0Package#getClass10_AttEInt_84() - * @model - * @generated - */ - int getAttEInt_84(); - - /** - * Sets the value of the '{@link mm0.Class10#getAttEInt_84 Att EInt 84}' attribute. - * - * - * @param value the new value of the 'Att EInt 84' attribute. - * @see #getAttEInt_84() - * @generated - */ - void setAttEInt_84(int value); - - /** - * Returns the value of the 'Ref Class10 112' reference. - * - *

- * If the meaning of the 'Ref Class10 112' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class10 112' reference. - * @see #setRefClass10_112(Class10) - * @see mm0.Mm0Package#getClass10_RefClass10_112() - * @model - * @generated - */ - Class10 getRefClass10_112(); - - /** - * Sets the value of the '{@link mm0.Class10#getRefClass10_112 Ref Class10 112}' reference. - * - * - * @param value the new value of the 'Ref Class10 112' reference. - * @see #getRefClass10_112() - * @generated - */ - void setRefClass10_112(Class10 value); - - /** - * Returns the value of the 'Att EBoolean 118' attribute. - * - *

- * If the meaning of the 'Att EBoolean 118' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 118' attribute. - * @see #setAttEBoolean_118(boolean) - * @see mm0.Mm0Package#getClass10_AttEBoolean_118() - * @model - * @generated - */ - boolean isAttEBoolean_118(); - - /** - * Sets the value of the '{@link mm0.Class10#isAttEBoolean_118 Att EBoolean 118}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 118' attribute. - * @see #isAttEBoolean_118() - * @generated - */ - void setAttEBoolean_118(boolean value); - - /** - * Returns the value of the 'Ref Class9 119' reference. - * - *

- * If the meaning of the 'Ref Class9 119' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class9 119' reference. - * @see #setRefClass9_119(Class9) - * @see mm0.Mm0Package#getClass10_RefClass9_119() - * @model - * @generated - */ - Class9 getRefClass9_119(); - - /** - * Sets the value of the '{@link mm0.Class10#getRefClass9_119 Ref Class9 119}' reference. - * - * - * @param value the new value of the 'Ref Class9 119' reference. - * @see #getRefClass9_119() - * @generated - */ - void setRefClass9_119(Class9 value); - - /** - * Returns the value of the 'Att EInt 121' attribute. - * - *

- * If the meaning of the 'Att EInt 121' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 121' attribute. - * @see #setAttEInt_121(int) - * @see mm0.Mm0Package#getClass10_AttEInt_121() - * @model - * @generated - */ - int getAttEInt_121(); - - /** - * Sets the value of the '{@link mm0.Class10#getAttEInt_121 Att EInt 121}' attribute. - * - * - * @param value the new value of the 'Att EInt 121' attribute. - * @see #getAttEInt_121() - * @generated - */ - void setAttEInt_121(int value); - - /** - * Returns the value of the 'Att EBoolean 123' attribute. - * - *

- * If the meaning of the 'Att EBoolean 123' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 123' attribute. - * @see #setAttEBoolean_123(boolean) - * @see mm0.Mm0Package#getClass10_AttEBoolean_123() - * @model - * @generated - */ - boolean isAttEBoolean_123(); - - /** - * Sets the value of the '{@link mm0.Class10#isAttEBoolean_123 Att EBoolean 123}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 123' attribute. - * @see #isAttEBoolean_123() - * @generated - */ - void setAttEBoolean_123(boolean value); - - /** - * Returns the value of the 'Ref Class4 124' reference. - * - *

- * If the meaning of the 'Ref Class4 124' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class4 124' reference. - * @see #setRefClass4_124(Class4) - * @see mm0.Mm0Package#getClass10_RefClass4_124() - * @model - * @generated - */ - Class4 getRefClass4_124(); - - /** - * Sets the value of the '{@link mm0.Class10#getRefClass4_124 Ref Class4 124}' reference. - * - * - * @param value the new value of the 'Ref Class4 124' reference. - * @see #getRefClass4_124() - * @generated - */ - void setRefClass4_124(Class4 value); - - /** - * Returns the value of the 'Att EInt 125' attribute. - * - *

- * If the meaning of the 'Att EInt 125' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 125' attribute. - * @see #setAttEInt_125(int) - * @see mm0.Mm0Package#getClass10_AttEInt_125() - * @model - * @generated - */ - int getAttEInt_125(); - - /** - * Sets the value of the '{@link mm0.Class10#getAttEInt_125 Att EInt 125}' attribute. - * - * - * @param value the new value of the 'Att EInt 125' attribute. - * @see #getAttEInt_125() - * @generated - */ - void setAttEInt_125(int value); - - /** - * Returns the value of the 'Att EBoolean 128' attribute. - * - *

- * If the meaning of the 'Att EBoolean 128' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 128' attribute. - * @see #setAttEBoolean_128(boolean) - * @see mm0.Mm0Package#getClass10_AttEBoolean_128() - * @model - * @generated - */ - boolean isAttEBoolean_128(); - - /** - * Sets the value of the '{@link mm0.Class10#isAttEBoolean_128 Att EBoolean 128}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 128' attribute. - * @see #isAttEBoolean_128() - * @generated - */ - void setAttEBoolean_128(boolean value); - - /** - * Returns the value of the 'Att EInt 144' attribute. - * - *

- * If the meaning of the 'Att EInt 144' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 144' attribute. - * @see #setAttEInt_144(int) - * @see mm0.Mm0Package#getClass10_AttEInt_144() - * @model - * @generated - */ - int getAttEInt_144(); - - /** - * Sets the value of the '{@link mm0.Class10#getAttEInt_144 Att EInt 144}' attribute. - * - * - * @param value the new value of the 'Att EInt 144' attribute. - * @see #getAttEInt_144() - * @generated - */ - void setAttEInt_144(int value); - - /** - * Returns the value of the 'Att EBoolean 152' attribute. - * - *

- * If the meaning of the 'Att EBoolean 152' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 152' attribute. - * @see #setAttEBoolean_152(boolean) - * @see mm0.Mm0Package#getClass10_AttEBoolean_152() - * @model - * @generated - */ - boolean isAttEBoolean_152(); - - /** - * Sets the value of the '{@link mm0.Class10#isAttEBoolean_152 Att EBoolean 152}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 152' attribute. - * @see #isAttEBoolean_152() - * @generated - */ - void setAttEBoolean_152(boolean value); - - /** - * Returns the value of the 'Att EInt 173 m' attribute. - * - *

- * If the meaning of the 'Att EInt 173 m' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 173 m' attribute. - * @see #setAttEInt_173_m(int) - * @see mm0.Mm0Package#getClass10_AttEInt_173_m() - * @model - * @generated - */ - int getAttEInt_173_m(); - - /** - * Sets the value of the '{@link mm0.Class10#getAttEInt_173_m Att EInt 173 m}' attribute. - * - * - * @param value the new value of the 'Att EInt 173 m' attribute. - * @see #getAttEInt_173_m() - * @generated - */ - void setAttEInt_173_m(int value); - - /** - * Returns the value of the 'Att EInt 183 m' attribute. - * - *

- * If the meaning of the 'Att EInt 183 m' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 183 m' attribute. - * @see #setAttEInt_183_m(int) - * @see mm0.Mm0Package#getClass10_AttEInt_183_m() - * @model - * @generated - */ - int getAttEInt_183_m(); - - /** - * Sets the value of the '{@link mm0.Class10#getAttEInt_183_m Att EInt 183 m}' attribute. - * - * - * @param value the new value of the 'Att EInt 183 m' attribute. - * @see #getAttEInt_183_m() - * @generated - */ - void setAttEInt_183_m(int value); - -} // Class10 diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class2.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class2.java deleted file mode 100644 index 846010b57efa44bdc5232ab3b2518010c65409a0..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class2.java +++ /dev/null @@ -1,374 +0,0 @@ -/** - */ -package mm0; - -import org.eclipse.emf.ecore.EObject; - -/** - * - * A representation of the model object 'Class2'. - * - * - *

- * The following features are supported: - *

    - *
  • {@link mm0.Class2#getAttEInt_12 Att EInt 12}
  • - *
  • {@link mm0.Class2#getAttEInt_18 Att EInt 18}
  • - *
  • {@link mm0.Class2#isAttEBoolean_21 Att EBoolean 21}
  • - *
  • {@link mm0.Class2#isAttEBoolean_50 Att EBoolean 50}
  • - *
  • {@link mm0.Class2#isAttEBoolean_76 Att EBoolean 76}
  • - *
  • {@link mm0.Class2#getAttEInt_104 Att EInt 104}
  • - *
  • {@link mm0.Class2#getAttEInt_117 Att EInt 117}
  • - *
  • {@link mm0.Class2#getAttEInt_132 Att EInt 132}
  • - *
  • {@link mm0.Class2#getAttEInt_140 Att EInt 140}
  • - *
  • {@link mm0.Class2#isAttEBoolean_146 Att EBoolean 146}
  • - *
  • {@link mm0.Class2#getAttEInt_161 Att EInt 161}
  • - *
  • {@link mm0.Class2#getAttEInt_170 Att EInt 170}
  • - *
  • {@link mm0.Class2#getAttEInt_185_m Att EInt 185 m}
  • - *
- *

- * - * @see mm0.Mm0Package#getClass2() - * @model - * @generated - */ -public interface Class2 extends EObject { - /** - * Returns the value of the 'Att EInt 12' attribute. - * - *

- * If the meaning of the 'Att EInt 12' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 12' attribute. - * @see #setAttEInt_12(int) - * @see mm0.Mm0Package#getClass2_AttEInt_12() - * @model - * @generated - */ - int getAttEInt_12(); - - /** - * Sets the value of the '{@link mm0.Class2#getAttEInt_12 Att EInt 12}' attribute. - * - * - * @param value the new value of the 'Att EInt 12' attribute. - * @see #getAttEInt_12() - * @generated - */ - void setAttEInt_12(int value); - - /** - * Returns the value of the 'Att EInt 18' attribute. - * - *

- * If the meaning of the 'Att EInt 18' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 18' attribute. - * @see #setAttEInt_18(int) - * @see mm0.Mm0Package#getClass2_AttEInt_18() - * @model - * @generated - */ - int getAttEInt_18(); - - /** - * Sets the value of the '{@link mm0.Class2#getAttEInt_18 Att EInt 18}' attribute. - * - * - * @param value the new value of the 'Att EInt 18' attribute. - * @see #getAttEInt_18() - * @generated - */ - void setAttEInt_18(int value); - - /** - * Returns the value of the 'Att EBoolean 21' attribute. - * - *

- * If the meaning of the 'Att EBoolean 21' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 21' attribute. - * @see #setAttEBoolean_21(boolean) - * @see mm0.Mm0Package#getClass2_AttEBoolean_21() - * @model - * @generated - */ - boolean isAttEBoolean_21(); - - /** - * Sets the value of the '{@link mm0.Class2#isAttEBoolean_21 Att EBoolean 21}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 21' attribute. - * @see #isAttEBoolean_21() - * @generated - */ - void setAttEBoolean_21(boolean value); - - /** - * Returns the value of the 'Att EBoolean 50' attribute. - * - *

- * If the meaning of the 'Att EBoolean 50' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 50' attribute. - * @see #setAttEBoolean_50(boolean) - * @see mm0.Mm0Package#getClass2_AttEBoolean_50() - * @model - * @generated - */ - boolean isAttEBoolean_50(); - - /** - * Sets the value of the '{@link mm0.Class2#isAttEBoolean_50 Att EBoolean 50}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 50' attribute. - * @see #isAttEBoolean_50() - * @generated - */ - void setAttEBoolean_50(boolean value); - - /** - * Returns the value of the 'Att EBoolean 76' attribute. - * - *

- * If the meaning of the 'Att EBoolean 76' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 76' attribute. - * @see #setAttEBoolean_76(boolean) - * @see mm0.Mm0Package#getClass2_AttEBoolean_76() - * @model - * @generated - */ - boolean isAttEBoolean_76(); - - /** - * Sets the value of the '{@link mm0.Class2#isAttEBoolean_76 Att EBoolean 76}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 76' attribute. - * @see #isAttEBoolean_76() - * @generated - */ - void setAttEBoolean_76(boolean value); - - /** - * Returns the value of the 'Att EInt 104' attribute. - * - *

- * If the meaning of the 'Att EInt 104' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 104' attribute. - * @see #setAttEInt_104(int) - * @see mm0.Mm0Package#getClass2_AttEInt_104() - * @model - * @generated - */ - int getAttEInt_104(); - - /** - * Sets the value of the '{@link mm0.Class2#getAttEInt_104 Att EInt 104}' attribute. - * - * - * @param value the new value of the 'Att EInt 104' attribute. - * @see #getAttEInt_104() - * @generated - */ - void setAttEInt_104(int value); - - /** - * Returns the value of the 'Att EInt 117' attribute. - * - *

- * If the meaning of the 'Att EInt 117' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 117' attribute. - * @see #setAttEInt_117(int) - * @see mm0.Mm0Package#getClass2_AttEInt_117() - * @model - * @generated - */ - int getAttEInt_117(); - - /** - * Sets the value of the '{@link mm0.Class2#getAttEInt_117 Att EInt 117}' attribute. - * - * - * @param value the new value of the 'Att EInt 117' attribute. - * @see #getAttEInt_117() - * @generated - */ - void setAttEInt_117(int value); - - /** - * Returns the value of the 'Att EInt 132' attribute. - * - *

- * If the meaning of the 'Att EInt 132' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 132' attribute. - * @see #setAttEInt_132(int) - * @see mm0.Mm0Package#getClass2_AttEInt_132() - * @model - * @generated - */ - int getAttEInt_132(); - - /** - * Sets the value of the '{@link mm0.Class2#getAttEInt_132 Att EInt 132}' attribute. - * - * - * @param value the new value of the 'Att EInt 132' attribute. - * @see #getAttEInt_132() - * @generated - */ - void setAttEInt_132(int value); - - /** - * Returns the value of the 'Att EInt 140' attribute. - * - *

- * If the meaning of the 'Att EInt 140' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 140' attribute. - * @see #setAttEInt_140(int) - * @see mm0.Mm0Package#getClass2_AttEInt_140() - * @model - * @generated - */ - int getAttEInt_140(); - - /** - * Sets the value of the '{@link mm0.Class2#getAttEInt_140 Att EInt 140}' attribute. - * - * - * @param value the new value of the 'Att EInt 140' attribute. - * @see #getAttEInt_140() - * @generated - */ - void setAttEInt_140(int value); - - /** - * Returns the value of the 'Att EBoolean 146' attribute. - * - *

- * If the meaning of the 'Att EBoolean 146' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 146' attribute. - * @see #setAttEBoolean_146(boolean) - * @see mm0.Mm0Package#getClass2_AttEBoolean_146() - * @model - * @generated - */ - boolean isAttEBoolean_146(); - - /** - * Sets the value of the '{@link mm0.Class2#isAttEBoolean_146 Att EBoolean 146}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 146' attribute. - * @see #isAttEBoolean_146() - * @generated - */ - void setAttEBoolean_146(boolean value); - - /** - * Returns the value of the 'Att EInt 161' attribute. - * - *

- * If the meaning of the 'Att EInt 161' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 161' attribute. - * @see #setAttEInt_161(int) - * @see mm0.Mm0Package#getClass2_AttEInt_161() - * @model - * @generated - */ - int getAttEInt_161(); - - /** - * Sets the value of the '{@link mm0.Class2#getAttEInt_161 Att EInt 161}' attribute. - * - * - * @param value the new value of the 'Att EInt 161' attribute. - * @see #getAttEInt_161() - * @generated - */ - void setAttEInt_161(int value); - - /** - * Returns the value of the 'Att EInt 170' attribute. - * - *

- * If the meaning of the 'Att EInt 170' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 170' attribute. - * @see #setAttEInt_170(int) - * @see mm0.Mm0Package#getClass2_AttEInt_170() - * @model - * @generated - */ - int getAttEInt_170(); - - /** - * Sets the value of the '{@link mm0.Class2#getAttEInt_170 Att EInt 170}' attribute. - * - * - * @param value the new value of the 'Att EInt 170' attribute. - * @see #getAttEInt_170() - * @generated - */ - void setAttEInt_170(int value); - - /** - * Returns the value of the 'Att EInt 185 m' attribute. - * - *

- * If the meaning of the 'Att EInt 185 m' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 185 m' attribute. - * @see #setAttEInt_185_m(int) - * @see mm0.Mm0Package#getClass2_AttEInt_185_m() - * @model - * @generated - */ - int getAttEInt_185_m(); - - /** - * Sets the value of the '{@link mm0.Class2#getAttEInt_185_m Att EInt 185 m}' attribute. - * - * - * @param value the new value of the 'Att EInt 185 m' attribute. - * @see #getAttEInt_185_m() - * @generated - */ - void setAttEInt_185_m(int value); - -} // Class2 diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class3.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class3.java deleted file mode 100644 index a16e08dc7501b8397e6c72ebb5f90bc882d51ceb..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class3.java +++ /dev/null @@ -1,563 +0,0 @@ -/** - */ -package mm0; - -import org.eclipse.emf.ecore.EObject; - -/** - * - * A representation of the model object 'Class3'. - * - * - *

- * The following features are supported: - *

    - *
  • {@link mm0.Class3#getAttEInt_10 Att EInt 10}
  • - *
  • {@link mm0.Class3#getRefClass9_26 Ref Class9 26}
  • - *
  • {@link mm0.Class3#getAttEInt_30 Att EInt 30}
  • - *
  • {@link mm0.Class3#getAttEInt_40 Att EInt 40}
  • - *
  • {@link mm0.Class3#getAttEInt_48 Att EInt 48}
  • - *
  • {@link mm0.Class3#getAttEInt_68 Att EInt 68}
  • - *
  • {@link mm0.Class3#isAttEBoolean_69 Att EBoolean 69}
  • - *
  • {@link mm0.Class3#isAttEBoolean_78 Att EBoolean 78}
  • - *
  • {@link mm0.Class3#isAttEBoolean_87 Att EBoolean 87}
  • - *
  • {@link mm0.Class3#isAttEBoolean_88 Att EBoolean 88}
  • - *
  • {@link mm0.Class3#isAttEBoolean_89 Att EBoolean 89}
  • - *
  • {@link mm0.Class3#getAttEInt_101 Att EInt 101}
  • - *
  • {@link mm0.Class3#isAttEBoolean_102 Att EBoolean 102}
  • - *
  • {@link mm0.Class3#getRefClass0_105 Ref Class0 105}
  • - *
  • {@link mm0.Class3#getAttEInt_109 Att EInt 109}
  • - *
  • {@link mm0.Class3#isAttEBoolean_114 Att EBoolean 114}
  • - *
  • {@link mm0.Class3#getRefClass1_122 Ref Class1 122}
  • - *
  • {@link mm0.Class3#isAttEBoolean_165 Att EBoolean 165}
  • - *
  • {@link mm0.Class3#getRefClass2_167 Ref Class2 167}
  • - *
  • {@link mm0.Class3#getAttEInt_182_m Att EInt 182 m}
  • - *
- *

- * - * @see mm0.Mm0Package#getClass3() - * @model - * @generated - */ -public interface Class3 extends EObject { - /** - * Returns the value of the 'Att EInt 10' attribute. - * - *

- * If the meaning of the 'Att EInt 10' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 10' attribute. - * @see #setAttEInt_10(int) - * @see mm0.Mm0Package#getClass3_AttEInt_10() - * @model - * @generated - */ - int getAttEInt_10(); - - /** - * Sets the value of the '{@link mm0.Class3#getAttEInt_10 Att EInt 10}' attribute. - * - * - * @param value the new value of the 'Att EInt 10' attribute. - * @see #getAttEInt_10() - * @generated - */ - void setAttEInt_10(int value); - - /** - * Returns the value of the 'Ref Class9 26' reference. - * - *

- * If the meaning of the 'Ref Class9 26' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class9 26' reference. - * @see #setRefClass9_26(Class9) - * @see mm0.Mm0Package#getClass3_RefClass9_26() - * @model - * @generated - */ - Class9 getRefClass9_26(); - - /** - * Sets the value of the '{@link mm0.Class3#getRefClass9_26 Ref Class9 26}' reference. - * - * - * @param value the new value of the 'Ref Class9 26' reference. - * @see #getRefClass9_26() - * @generated - */ - void setRefClass9_26(Class9 value); - - /** - * Returns the value of the 'Att EInt 30' attribute. - * - *

- * If the meaning of the 'Att EInt 30' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 30' attribute. - * @see #setAttEInt_30(int) - * @see mm0.Mm0Package#getClass3_AttEInt_30() - * @model - * @generated - */ - int getAttEInt_30(); - - /** - * Sets the value of the '{@link mm0.Class3#getAttEInt_30 Att EInt 30}' attribute. - * - * - * @param value the new value of the 'Att EInt 30' attribute. - * @see #getAttEInt_30() - * @generated - */ - void setAttEInt_30(int value); - - /** - * Returns the value of the 'Att EInt 40' attribute. - * - *

- * If the meaning of the 'Att EInt 40' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 40' attribute. - * @see #setAttEInt_40(int) - * @see mm0.Mm0Package#getClass3_AttEInt_40() - * @model - * @generated - */ - int getAttEInt_40(); - - /** - * Sets the value of the '{@link mm0.Class3#getAttEInt_40 Att EInt 40}' attribute. - * - * - * @param value the new value of the 'Att EInt 40' attribute. - * @see #getAttEInt_40() - * @generated - */ - void setAttEInt_40(int value); - - /** - * Returns the value of the 'Att EInt 48' attribute. - * - *

- * If the meaning of the 'Att EInt 48' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 48' attribute. - * @see #setAttEInt_48(int) - * @see mm0.Mm0Package#getClass3_AttEInt_48() - * @model - * @generated - */ - int getAttEInt_48(); - - /** - * Sets the value of the '{@link mm0.Class3#getAttEInt_48 Att EInt 48}' attribute. - * - * - * @param value the new value of the 'Att EInt 48' attribute. - * @see #getAttEInt_48() - * @generated - */ - void setAttEInt_48(int value); - - /** - * Returns the value of the 'Att EInt 68' attribute. - * - *

- * If the meaning of the 'Att EInt 68' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 68' attribute. - * @see #setAttEInt_68(int) - * @see mm0.Mm0Package#getClass3_AttEInt_68() - * @model - * @generated - */ - int getAttEInt_68(); - - /** - * Sets the value of the '{@link mm0.Class3#getAttEInt_68 Att EInt 68}' attribute. - * - * - * @param value the new value of the 'Att EInt 68' attribute. - * @see #getAttEInt_68() - * @generated - */ - void setAttEInt_68(int value); - - /** - * Returns the value of the 'Att EBoolean 69' attribute. - * - *

- * If the meaning of the 'Att EBoolean 69' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 69' attribute. - * @see #setAttEBoolean_69(boolean) - * @see mm0.Mm0Package#getClass3_AttEBoolean_69() - * @model - * @generated - */ - boolean isAttEBoolean_69(); - - /** - * Sets the value of the '{@link mm0.Class3#isAttEBoolean_69 Att EBoolean 69}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 69' attribute. - * @see #isAttEBoolean_69() - * @generated - */ - void setAttEBoolean_69(boolean value); - - /** - * Returns the value of the 'Att EBoolean 78' attribute. - * - *

- * If the meaning of the 'Att EBoolean 78' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 78' attribute. - * @see #setAttEBoolean_78(boolean) - * @see mm0.Mm0Package#getClass3_AttEBoolean_78() - * @model - * @generated - */ - boolean isAttEBoolean_78(); - - /** - * Sets the value of the '{@link mm0.Class3#isAttEBoolean_78 Att EBoolean 78}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 78' attribute. - * @see #isAttEBoolean_78() - * @generated - */ - void setAttEBoolean_78(boolean value); - - /** - * Returns the value of the 'Att EBoolean 87' attribute. - * - *

- * If the meaning of the 'Att EBoolean 87' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 87' attribute. - * @see #setAttEBoolean_87(boolean) - * @see mm0.Mm0Package#getClass3_AttEBoolean_87() - * @model - * @generated - */ - boolean isAttEBoolean_87(); - - /** - * Sets the value of the '{@link mm0.Class3#isAttEBoolean_87 Att EBoolean 87}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 87' attribute. - * @see #isAttEBoolean_87() - * @generated - */ - void setAttEBoolean_87(boolean value); - - /** - * Returns the value of the 'Att EBoolean 88' attribute. - * - *

- * If the meaning of the 'Att EBoolean 88' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 88' attribute. - * @see #setAttEBoolean_88(boolean) - * @see mm0.Mm0Package#getClass3_AttEBoolean_88() - * @model - * @generated - */ - boolean isAttEBoolean_88(); - - /** - * Sets the value of the '{@link mm0.Class3#isAttEBoolean_88 Att EBoolean 88}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 88' attribute. - * @see #isAttEBoolean_88() - * @generated - */ - void setAttEBoolean_88(boolean value); - - /** - * Returns the value of the 'Att EBoolean 89' attribute. - * - *

- * If the meaning of the 'Att EBoolean 89' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 89' attribute. - * @see #setAttEBoolean_89(boolean) - * @see mm0.Mm0Package#getClass3_AttEBoolean_89() - * @model - * @generated - */ - boolean isAttEBoolean_89(); - - /** - * Sets the value of the '{@link mm0.Class3#isAttEBoolean_89 Att EBoolean 89}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 89' attribute. - * @see #isAttEBoolean_89() - * @generated - */ - void setAttEBoolean_89(boolean value); - - /** - * Returns the value of the 'Att EInt 101' attribute. - * - *

- * If the meaning of the 'Att EInt 101' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 101' attribute. - * @see #setAttEInt_101(int) - * @see mm0.Mm0Package#getClass3_AttEInt_101() - * @model - * @generated - */ - int getAttEInt_101(); - - /** - * Sets the value of the '{@link mm0.Class3#getAttEInt_101 Att EInt 101}' attribute. - * - * - * @param value the new value of the 'Att EInt 101' attribute. - * @see #getAttEInt_101() - * @generated - */ - void setAttEInt_101(int value); - - /** - * Returns the value of the 'Att EBoolean 102' attribute. - * - *

- * If the meaning of the 'Att EBoolean 102' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 102' attribute. - * @see #setAttEBoolean_102(boolean) - * @see mm0.Mm0Package#getClass3_AttEBoolean_102() - * @model - * @generated - */ - boolean isAttEBoolean_102(); - - /** - * Sets the value of the '{@link mm0.Class3#isAttEBoolean_102 Att EBoolean 102}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 102' attribute. - * @see #isAttEBoolean_102() - * @generated - */ - void setAttEBoolean_102(boolean value); - - /** - * Returns the value of the 'Ref Class0 105' reference. - * - *

- * If the meaning of the 'Ref Class0 105' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class0 105' reference. - * @see #setRefClass0_105(Class0) - * @see mm0.Mm0Package#getClass3_RefClass0_105() - * @model - * @generated - */ - Class0 getRefClass0_105(); - - /** - * Sets the value of the '{@link mm0.Class3#getRefClass0_105 Ref Class0 105}' reference. - * - * - * @param value the new value of the 'Ref Class0 105' reference. - * @see #getRefClass0_105() - * @generated - */ - void setRefClass0_105(Class0 value); - - /** - * Returns the value of the 'Att EInt 109' attribute. - * - *

- * If the meaning of the 'Att EInt 109' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 109' attribute. - * @see #setAttEInt_109(int) - * @see mm0.Mm0Package#getClass3_AttEInt_109() - * @model - * @generated - */ - int getAttEInt_109(); - - /** - * Sets the value of the '{@link mm0.Class3#getAttEInt_109 Att EInt 109}' attribute. - * - * - * @param value the new value of the 'Att EInt 109' attribute. - * @see #getAttEInt_109() - * @generated - */ - void setAttEInt_109(int value); - - /** - * Returns the value of the 'Att EBoolean 114' attribute. - * - *

- * If the meaning of the 'Att EBoolean 114' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 114' attribute. - * @see #setAttEBoolean_114(boolean) - * @see mm0.Mm0Package#getClass3_AttEBoolean_114() - * @model - * @generated - */ - boolean isAttEBoolean_114(); - - /** - * Sets the value of the '{@link mm0.Class3#isAttEBoolean_114 Att EBoolean 114}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 114' attribute. - * @see #isAttEBoolean_114() - * @generated - */ - void setAttEBoolean_114(boolean value); - - /** - * Returns the value of the 'Ref Class1 122' reference. - * - *

- * If the meaning of the 'Ref Class1 122' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class1 122' reference. - * @see #setRefClass1_122(Class1) - * @see mm0.Mm0Package#getClass3_RefClass1_122() - * @model - * @generated - */ - Class1 getRefClass1_122(); - - /** - * Sets the value of the '{@link mm0.Class3#getRefClass1_122 Ref Class1 122}' reference. - * - * - * @param value the new value of the 'Ref Class1 122' reference. - * @see #getRefClass1_122() - * @generated - */ - void setRefClass1_122(Class1 value); - - /** - * Returns the value of the 'Att EBoolean 165' attribute. - * - *

- * If the meaning of the 'Att EBoolean 165' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 165' attribute. - * @see #setAttEBoolean_165(boolean) - * @see mm0.Mm0Package#getClass3_AttEBoolean_165() - * @model - * @generated - */ - boolean isAttEBoolean_165(); - - /** - * Sets the value of the '{@link mm0.Class3#isAttEBoolean_165 Att EBoolean 165}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 165' attribute. - * @see #isAttEBoolean_165() - * @generated - */ - void setAttEBoolean_165(boolean value); - - /** - * Returns the value of the 'Ref Class2 167' reference. - * - *

- * If the meaning of the 'Ref Class2 167' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class2 167' reference. - * @see #setRefClass2_167(Class2) - * @see mm0.Mm0Package#getClass3_RefClass2_167() - * @model - * @generated - */ - Class2 getRefClass2_167(); - - /** - * Sets the value of the '{@link mm0.Class3#getRefClass2_167 Ref Class2 167}' reference. - * - * - * @param value the new value of the 'Ref Class2 167' reference. - * @see #getRefClass2_167() - * @generated - */ - void setRefClass2_167(Class2 value); - - /** - * Returns the value of the 'Att EInt 182 m' attribute. - * - *

- * If the meaning of the 'Att EInt 182 m' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 182 m' attribute. - * @see #setAttEInt_182_m(int) - * @see mm0.Mm0Package#getClass3_AttEInt_182_m() - * @model - * @generated - */ - int getAttEInt_182_m(); - - /** - * Sets the value of the '{@link mm0.Class3#getAttEInt_182_m Att EInt 182 m}' attribute. - * - * - * @param value the new value of the 'Att EInt 182 m' attribute. - * @see #getAttEInt_182_m() - * @generated - */ - void setAttEInt_182_m(int value); - -} // Class3 diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class4.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class4.java deleted file mode 100644 index 5849368291bca2afeb71bfb4249f1084cf988f63..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class4.java +++ /dev/null @@ -1,401 +0,0 @@ -/** - */ -package mm0; - -import org.eclipse.emf.ecore.EObject; - -/** - * - * A representation of the model object 'Class4'. - * - * - *

- * The following features are supported: - *

    - *
  • {@link mm0.Class4#isAttEBoolean_5 Att EBoolean 5}
  • - *
  • {@link mm0.Class4#getAttEInt_6 Att EInt 6}
  • - *
  • {@link mm0.Class4#isAttEBoolean_22 Att EBoolean 22}
  • - *
  • {@link mm0.Class4#getAttEInt_35 Att EInt 35}
  • - *
  • {@link mm0.Class4#isAttEBoolean_58 Att EBoolean 58}
  • - *
  • {@link mm0.Class4#getAttEInt_99 Att EInt 99}
  • - *
  • {@link mm0.Class4#getAttEInt_113 Att EInt 113}
  • - *
  • {@link mm0.Class4#getAttEInt_139 Att EInt 139}
  • - *
  • {@link mm0.Class4#isAttEBoolean_156 Att EBoolean 156}
  • - *
  • {@link mm0.Class4#isAttEBoolean_159 Att EBoolean 159}
  • - *
  • {@link mm0.Class4#getRefClass8_163 Ref Class8 163}
  • - *
  • {@link mm0.Class4#isAttEBoolean_169 Att EBoolean 169}
  • - *
  • {@link mm0.Class4#getAttEInt_174_m Att EInt 174 m}
  • - *
  • {@link mm0.Class4#getRefClass10_179_m Ref Class10 179 m}
  • - *
- *

- * - * @see mm0.Mm0Package#getClass4() - * @model - * @generated - */ -public interface Class4 extends EObject { - /** - * Returns the value of the 'Att EBoolean 5' attribute. - * - *

- * If the meaning of the 'Att EBoolean 5' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 5' attribute. - * @see #setAttEBoolean_5(boolean) - * @see mm0.Mm0Package#getClass4_AttEBoolean_5() - * @model - * @generated - */ - boolean isAttEBoolean_5(); - - /** - * Sets the value of the '{@link mm0.Class4#isAttEBoolean_5 Att EBoolean 5}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 5' attribute. - * @see #isAttEBoolean_5() - * @generated - */ - void setAttEBoolean_5(boolean value); - - /** - * Returns the value of the 'Att EInt 6' attribute. - * - *

- * If the meaning of the 'Att EInt 6' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 6' attribute. - * @see #setAttEInt_6(int) - * @see mm0.Mm0Package#getClass4_AttEInt_6() - * @model - * @generated - */ - int getAttEInt_6(); - - /** - * Sets the value of the '{@link mm0.Class4#getAttEInt_6 Att EInt 6}' attribute. - * - * - * @param value the new value of the 'Att EInt 6' attribute. - * @see #getAttEInt_6() - * @generated - */ - void setAttEInt_6(int value); - - /** - * Returns the value of the 'Att EBoolean 22' attribute. - * - *

- * If the meaning of the 'Att EBoolean 22' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 22' attribute. - * @see #setAttEBoolean_22(boolean) - * @see mm0.Mm0Package#getClass4_AttEBoolean_22() - * @model - * @generated - */ - boolean isAttEBoolean_22(); - - /** - * Sets the value of the '{@link mm0.Class4#isAttEBoolean_22 Att EBoolean 22}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 22' attribute. - * @see #isAttEBoolean_22() - * @generated - */ - void setAttEBoolean_22(boolean value); - - /** - * Returns the value of the 'Att EInt 35' attribute. - * - *

- * If the meaning of the 'Att EInt 35' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 35' attribute. - * @see #setAttEInt_35(int) - * @see mm0.Mm0Package#getClass4_AttEInt_35() - * @model - * @generated - */ - int getAttEInt_35(); - - /** - * Sets the value of the '{@link mm0.Class4#getAttEInt_35 Att EInt 35}' attribute. - * - * - * @param value the new value of the 'Att EInt 35' attribute. - * @see #getAttEInt_35() - * @generated - */ - void setAttEInt_35(int value); - - /** - * Returns the value of the 'Att EBoolean 58' attribute. - * - *

- * If the meaning of the 'Att EBoolean 58' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 58' attribute. - * @see #setAttEBoolean_58(boolean) - * @see mm0.Mm0Package#getClass4_AttEBoolean_58() - * @model - * @generated - */ - boolean isAttEBoolean_58(); - - /** - * Sets the value of the '{@link mm0.Class4#isAttEBoolean_58 Att EBoolean 58}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 58' attribute. - * @see #isAttEBoolean_58() - * @generated - */ - void setAttEBoolean_58(boolean value); - - /** - * Returns the value of the 'Att EInt 99' attribute. - * - *

- * If the meaning of the 'Att EInt 99' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 99' attribute. - * @see #setAttEInt_99(int) - * @see mm0.Mm0Package#getClass4_AttEInt_99() - * @model - * @generated - */ - int getAttEInt_99(); - - /** - * Sets the value of the '{@link mm0.Class4#getAttEInt_99 Att EInt 99}' attribute. - * - * - * @param value the new value of the 'Att EInt 99' attribute. - * @see #getAttEInt_99() - * @generated - */ - void setAttEInt_99(int value); - - /** - * Returns the value of the 'Att EInt 113' attribute. - * - *

- * If the meaning of the 'Att EInt 113' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 113' attribute. - * @see #setAttEInt_113(int) - * @see mm0.Mm0Package#getClass4_AttEInt_113() - * @model - * @generated - */ - int getAttEInt_113(); - - /** - * Sets the value of the '{@link mm0.Class4#getAttEInt_113 Att EInt 113}' attribute. - * - * - * @param value the new value of the 'Att EInt 113' attribute. - * @see #getAttEInt_113() - * @generated - */ - void setAttEInt_113(int value); - - /** - * Returns the value of the 'Att EInt 139' attribute. - * - *

- * If the meaning of the 'Att EInt 139' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 139' attribute. - * @see #setAttEInt_139(int) - * @see mm0.Mm0Package#getClass4_AttEInt_139() - * @model - * @generated - */ - int getAttEInt_139(); - - /** - * Sets the value of the '{@link mm0.Class4#getAttEInt_139 Att EInt 139}' attribute. - * - * - * @param value the new value of the 'Att EInt 139' attribute. - * @see #getAttEInt_139() - * @generated - */ - void setAttEInt_139(int value); - - /** - * Returns the value of the 'Att EBoolean 156' attribute. - * - *

- * If the meaning of the 'Att EBoolean 156' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 156' attribute. - * @see #setAttEBoolean_156(boolean) - * @see mm0.Mm0Package#getClass4_AttEBoolean_156() - * @model - * @generated - */ - boolean isAttEBoolean_156(); - - /** - * Sets the value of the '{@link mm0.Class4#isAttEBoolean_156 Att EBoolean 156}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 156' attribute. - * @see #isAttEBoolean_156() - * @generated - */ - void setAttEBoolean_156(boolean value); - - /** - * Returns the value of the 'Att EBoolean 159' attribute. - * - *

- * If the meaning of the 'Att EBoolean 159' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 159' attribute. - * @see #setAttEBoolean_159(boolean) - * @see mm0.Mm0Package#getClass4_AttEBoolean_159() - * @model - * @generated - */ - boolean isAttEBoolean_159(); - - /** - * Sets the value of the '{@link mm0.Class4#isAttEBoolean_159 Att EBoolean 159}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 159' attribute. - * @see #isAttEBoolean_159() - * @generated - */ - void setAttEBoolean_159(boolean value); - - /** - * Returns the value of the 'Ref Class8 163' reference. - * - *

- * If the meaning of the 'Ref Class8 163' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class8 163' reference. - * @see #setRefClass8_163(Class8) - * @see mm0.Mm0Package#getClass4_RefClass8_163() - * @model - * @generated - */ - Class8 getRefClass8_163(); - - /** - * Sets the value of the '{@link mm0.Class4#getRefClass8_163 Ref Class8 163}' reference. - * - * - * @param value the new value of the 'Ref Class8 163' reference. - * @see #getRefClass8_163() - * @generated - */ - void setRefClass8_163(Class8 value); - - /** - * Returns the value of the 'Att EBoolean 169' attribute. - * - *

- * If the meaning of the 'Att EBoolean 169' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 169' attribute. - * @see #setAttEBoolean_169(boolean) - * @see mm0.Mm0Package#getClass4_AttEBoolean_169() - * @model - * @generated - */ - boolean isAttEBoolean_169(); - - /** - * Sets the value of the '{@link mm0.Class4#isAttEBoolean_169 Att EBoolean 169}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 169' attribute. - * @see #isAttEBoolean_169() - * @generated - */ - void setAttEBoolean_169(boolean value); - - /** - * Returns the value of the 'Att EInt 174 m' attribute. - * - *

- * If the meaning of the 'Att EInt 174 m' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 174 m' attribute. - * @see #setAttEInt_174_m(int) - * @see mm0.Mm0Package#getClass4_AttEInt_174_m() - * @model - * @generated - */ - int getAttEInt_174_m(); - - /** - * Sets the value of the '{@link mm0.Class4#getAttEInt_174_m Att EInt 174 m}' attribute. - * - * - * @param value the new value of the 'Att EInt 174 m' attribute. - * @see #getAttEInt_174_m() - * @generated - */ - void setAttEInt_174_m(int value); - - /** - * Returns the value of the 'Ref Class10 179 m' reference. - * - *

- * If the meaning of the 'Ref Class10 179 m' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class10 179 m' reference. - * @see #setRefClass10_179_m(Class10) - * @see mm0.Mm0Package#getClass4_RefClass10_179_m() - * @model - * @generated - */ - Class10 getRefClass10_179_m(); - - /** - * Sets the value of the '{@link mm0.Class4#getRefClass10_179_m Ref Class10 179 m}' reference. - * - * - * @param value the new value of the 'Ref Class10 179 m' reference. - * @see #getRefClass10_179_m() - * @generated - */ - void setRefClass10_179_m(Class10 value); - -} // Class4 diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class5.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class5.java deleted file mode 100644 index d426d72b1d5135ae26550b9b1b418e93a2cbb0ae..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class5.java +++ /dev/null @@ -1,590 +0,0 @@ -/** - */ -package mm0; - -import org.eclipse.emf.ecore.EObject; - -/** - * - * A representation of the model object 'Class5'. - * - * - *

- * The following features are supported: - *

    - *
  • {@link mm0.Class5#isAttEBoolean_4 Att EBoolean 4}
  • - *
  • {@link mm0.Class5#isAttEBoolean_7 Att EBoolean 7}
  • - *
  • {@link mm0.Class5#isAttEBoolean_8 Att EBoolean 8}
  • - *
  • {@link mm0.Class5#getAttEInt_16 Att EInt 16}
  • - *
  • {@link mm0.Class5#getAttEInt_19 Att EInt 19}
  • - *
  • {@link mm0.Class5#isAttEBoolean_28 Att EBoolean 28}
  • - *
  • {@link mm0.Class5#getAttEInt_31 Att EInt 31}
  • - *
  • {@link mm0.Class5#getRefClass8_36 Ref Class8 36}
  • - *
  • {@link mm0.Class5#isAttEBoolean_39 Att EBoolean 39}
  • - *
  • {@link mm0.Class5#getRefClass0_55 Ref Class0 55}
  • - *
  • {@link mm0.Class5#isAttEBoolean_62 Att EBoolean 62}
  • - *
  • {@link mm0.Class5#isAttEBoolean_65 Att EBoolean 65}
  • - *
  • {@link mm0.Class5#getAttEInt_67 Att EInt 67}
  • - *
  • {@link mm0.Class5#isAttEBoolean_100 Att EBoolean 100}
  • - *
  • {@link mm0.Class5#isAttEBoolean_138 Att EBoolean 138}
  • - *
  • {@link mm0.Class5#getAttEInt_142 Att EInt 142}
  • - *
  • {@link mm0.Class5#getAttEInt_150 Att EInt 150}
  • - *
  • {@link mm0.Class5#isAttEBoolean_151 Att EBoolean 151}
  • - *
  • {@link mm0.Class5#getAttEInt_155 Att EInt 155}
  • - *
  • {@link mm0.Class5#getAttEInt_171 Att EInt 171}
  • - *
  • {@link mm0.Class5#isAttEBoolean_181_m Att EBoolean 181 m}
  • - *
- *

- * - * @see mm0.Mm0Package#getClass5() - * @model - * @generated - */ -public interface Class5 extends EObject { - /** - * Returns the value of the 'Att EBoolean 4' attribute. - * - *

- * If the meaning of the 'Att EBoolean 4' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 4' attribute. - * @see #setAttEBoolean_4(boolean) - * @see mm0.Mm0Package#getClass5_AttEBoolean_4() - * @model - * @generated - */ - boolean isAttEBoolean_4(); - - /** - * Sets the value of the '{@link mm0.Class5#isAttEBoolean_4 Att EBoolean 4}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 4' attribute. - * @see #isAttEBoolean_4() - * @generated - */ - void setAttEBoolean_4(boolean value); - - /** - * Returns the value of the 'Att EBoolean 7' attribute. - * - *

- * If the meaning of the 'Att EBoolean 7' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 7' attribute. - * @see #setAttEBoolean_7(boolean) - * @see mm0.Mm0Package#getClass5_AttEBoolean_7() - * @model - * @generated - */ - boolean isAttEBoolean_7(); - - /** - * Sets the value of the '{@link mm0.Class5#isAttEBoolean_7 Att EBoolean 7}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 7' attribute. - * @see #isAttEBoolean_7() - * @generated - */ - void setAttEBoolean_7(boolean value); - - /** - * Returns the value of the 'Att EBoolean 8' attribute. - * - *

- * If the meaning of the 'Att EBoolean 8' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 8' attribute. - * @see #setAttEBoolean_8(boolean) - * @see mm0.Mm0Package#getClass5_AttEBoolean_8() - * @model - * @generated - */ - boolean isAttEBoolean_8(); - - /** - * Sets the value of the '{@link mm0.Class5#isAttEBoolean_8 Att EBoolean 8}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 8' attribute. - * @see #isAttEBoolean_8() - * @generated - */ - void setAttEBoolean_8(boolean value); - - /** - * Returns the value of the 'Att EInt 16' attribute. - * - *

- * If the meaning of the 'Att EInt 16' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 16' attribute. - * @see #setAttEInt_16(int) - * @see mm0.Mm0Package#getClass5_AttEInt_16() - * @model - * @generated - */ - int getAttEInt_16(); - - /** - * Sets the value of the '{@link mm0.Class5#getAttEInt_16 Att EInt 16}' attribute. - * - * - * @param value the new value of the 'Att EInt 16' attribute. - * @see #getAttEInt_16() - * @generated - */ - void setAttEInt_16(int value); - - /** - * Returns the value of the 'Att EInt 19' attribute. - * - *

- * If the meaning of the 'Att EInt 19' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 19' attribute. - * @see #setAttEInt_19(int) - * @see mm0.Mm0Package#getClass5_AttEInt_19() - * @model - * @generated - */ - int getAttEInt_19(); - - /** - * Sets the value of the '{@link mm0.Class5#getAttEInt_19 Att EInt 19}' attribute. - * - * - * @param value the new value of the 'Att EInt 19' attribute. - * @see #getAttEInt_19() - * @generated - */ - void setAttEInt_19(int value); - - /** - * Returns the value of the 'Att EBoolean 28' attribute. - * - *

- * If the meaning of the 'Att EBoolean 28' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 28' attribute. - * @see #setAttEBoolean_28(boolean) - * @see mm0.Mm0Package#getClass5_AttEBoolean_28() - * @model - * @generated - */ - boolean isAttEBoolean_28(); - - /** - * Sets the value of the '{@link mm0.Class5#isAttEBoolean_28 Att EBoolean 28}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 28' attribute. - * @see #isAttEBoolean_28() - * @generated - */ - void setAttEBoolean_28(boolean value); - - /** - * Returns the value of the 'Att EInt 31' attribute. - * - *

- * If the meaning of the 'Att EInt 31' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 31' attribute. - * @see #setAttEInt_31(int) - * @see mm0.Mm0Package#getClass5_AttEInt_31() - * @model - * @generated - */ - int getAttEInt_31(); - - /** - * Sets the value of the '{@link mm0.Class5#getAttEInt_31 Att EInt 31}' attribute. - * - * - * @param value the new value of the 'Att EInt 31' attribute. - * @see #getAttEInt_31() - * @generated - */ - void setAttEInt_31(int value); - - /** - * Returns the value of the 'Ref Class8 36' reference. - * - *

- * If the meaning of the 'Ref Class8 36' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class8 36' reference. - * @see #setRefClass8_36(Class8) - * @see mm0.Mm0Package#getClass5_RefClass8_36() - * @model - * @generated - */ - Class8 getRefClass8_36(); - - /** - * Sets the value of the '{@link mm0.Class5#getRefClass8_36 Ref Class8 36}' reference. - * - * - * @param value the new value of the 'Ref Class8 36' reference. - * @see #getRefClass8_36() - * @generated - */ - void setRefClass8_36(Class8 value); - - /** - * Returns the value of the 'Att EBoolean 39' attribute. - * - *

- * If the meaning of the 'Att EBoolean 39' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 39' attribute. - * @see #setAttEBoolean_39(boolean) - * @see mm0.Mm0Package#getClass5_AttEBoolean_39() - * @model - * @generated - */ - boolean isAttEBoolean_39(); - - /** - * Sets the value of the '{@link mm0.Class5#isAttEBoolean_39 Att EBoolean 39}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 39' attribute. - * @see #isAttEBoolean_39() - * @generated - */ - void setAttEBoolean_39(boolean value); - - /** - * Returns the value of the 'Ref Class0 55' reference. - * - *

- * If the meaning of the 'Ref Class0 55' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class0 55' reference. - * @see #setRefClass0_55(Class0) - * @see mm0.Mm0Package#getClass5_RefClass0_55() - * @model - * @generated - */ - Class0 getRefClass0_55(); - - /** - * Sets the value of the '{@link mm0.Class5#getRefClass0_55 Ref Class0 55}' reference. - * - * - * @param value the new value of the 'Ref Class0 55' reference. - * @see #getRefClass0_55() - * @generated - */ - void setRefClass0_55(Class0 value); - - /** - * Returns the value of the 'Att EBoolean 62' attribute. - * - *

- * If the meaning of the 'Att EBoolean 62' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 62' attribute. - * @see #setAttEBoolean_62(boolean) - * @see mm0.Mm0Package#getClass5_AttEBoolean_62() - * @model - * @generated - */ - boolean isAttEBoolean_62(); - - /** - * Sets the value of the '{@link mm0.Class5#isAttEBoolean_62 Att EBoolean 62}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 62' attribute. - * @see #isAttEBoolean_62() - * @generated - */ - void setAttEBoolean_62(boolean value); - - /** - * Returns the value of the 'Att EBoolean 65' attribute. - * - *

- * If the meaning of the 'Att EBoolean 65' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 65' attribute. - * @see #setAttEBoolean_65(boolean) - * @see mm0.Mm0Package#getClass5_AttEBoolean_65() - * @model - * @generated - */ - boolean isAttEBoolean_65(); - - /** - * Sets the value of the '{@link mm0.Class5#isAttEBoolean_65 Att EBoolean 65}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 65' attribute. - * @see #isAttEBoolean_65() - * @generated - */ - void setAttEBoolean_65(boolean value); - - /** - * Returns the value of the 'Att EInt 67' attribute. - * - *

- * If the meaning of the 'Att EInt 67' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 67' attribute. - * @see #setAttEInt_67(int) - * @see mm0.Mm0Package#getClass5_AttEInt_67() - * @model - * @generated - */ - int getAttEInt_67(); - - /** - * Sets the value of the '{@link mm0.Class5#getAttEInt_67 Att EInt 67}' attribute. - * - * - * @param value the new value of the 'Att EInt 67' attribute. - * @see #getAttEInt_67() - * @generated - */ - void setAttEInt_67(int value); - - /** - * Returns the value of the 'Att EBoolean 100' attribute. - * - *

- * If the meaning of the 'Att EBoolean 100' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 100' attribute. - * @see #setAttEBoolean_100(boolean) - * @see mm0.Mm0Package#getClass5_AttEBoolean_100() - * @model - * @generated - */ - boolean isAttEBoolean_100(); - - /** - * Sets the value of the '{@link mm0.Class5#isAttEBoolean_100 Att EBoolean 100}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 100' attribute. - * @see #isAttEBoolean_100() - * @generated - */ - void setAttEBoolean_100(boolean value); - - /** - * Returns the value of the 'Att EBoolean 138' attribute. - * - *

- * If the meaning of the 'Att EBoolean 138' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 138' attribute. - * @see #setAttEBoolean_138(boolean) - * @see mm0.Mm0Package#getClass5_AttEBoolean_138() - * @model - * @generated - */ - boolean isAttEBoolean_138(); - - /** - * Sets the value of the '{@link mm0.Class5#isAttEBoolean_138 Att EBoolean 138}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 138' attribute. - * @see #isAttEBoolean_138() - * @generated - */ - void setAttEBoolean_138(boolean value); - - /** - * Returns the value of the 'Att EInt 142' attribute. - * - *

- * If the meaning of the 'Att EInt 142' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 142' attribute. - * @see #setAttEInt_142(int) - * @see mm0.Mm0Package#getClass5_AttEInt_142() - * @model - * @generated - */ - int getAttEInt_142(); - - /** - * Sets the value of the '{@link mm0.Class5#getAttEInt_142 Att EInt 142}' attribute. - * - * - * @param value the new value of the 'Att EInt 142' attribute. - * @see #getAttEInt_142() - * @generated - */ - void setAttEInt_142(int value); - - /** - * Returns the value of the 'Att EInt 150' attribute. - * - *

- * If the meaning of the 'Att EInt 150' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 150' attribute. - * @see #setAttEInt_150(int) - * @see mm0.Mm0Package#getClass5_AttEInt_150() - * @model - * @generated - */ - int getAttEInt_150(); - - /** - * Sets the value of the '{@link mm0.Class5#getAttEInt_150 Att EInt 150}' attribute. - * - * - * @param value the new value of the 'Att EInt 150' attribute. - * @see #getAttEInt_150() - * @generated - */ - void setAttEInt_150(int value); - - /** - * Returns the value of the 'Att EBoolean 151' attribute. - * - *

- * If the meaning of the 'Att EBoolean 151' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 151' attribute. - * @see #setAttEBoolean_151(boolean) - * @see mm0.Mm0Package#getClass5_AttEBoolean_151() - * @model - * @generated - */ - boolean isAttEBoolean_151(); - - /** - * Sets the value of the '{@link mm0.Class5#isAttEBoolean_151 Att EBoolean 151}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 151' attribute. - * @see #isAttEBoolean_151() - * @generated - */ - void setAttEBoolean_151(boolean value); - - /** - * Returns the value of the 'Att EInt 155' attribute. - * - *

- * If the meaning of the 'Att EInt 155' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 155' attribute. - * @see #setAttEInt_155(int) - * @see mm0.Mm0Package#getClass5_AttEInt_155() - * @model - * @generated - */ - int getAttEInt_155(); - - /** - * Sets the value of the '{@link mm0.Class5#getAttEInt_155 Att EInt 155}' attribute. - * - * - * @param value the new value of the 'Att EInt 155' attribute. - * @see #getAttEInt_155() - * @generated - */ - void setAttEInt_155(int value); - - /** - * Returns the value of the 'Att EInt 171' attribute. - * - *

- * If the meaning of the 'Att EInt 171' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 171' attribute. - * @see #setAttEInt_171(int) - * @see mm0.Mm0Package#getClass5_AttEInt_171() - * @model - * @generated - */ - int getAttEInt_171(); - - /** - * Sets the value of the '{@link mm0.Class5#getAttEInt_171 Att EInt 171}' attribute. - * - * - * @param value the new value of the 'Att EInt 171' attribute. - * @see #getAttEInt_171() - * @generated - */ - void setAttEInt_171(int value); - - /** - * Returns the value of the 'Att EBoolean 181 m' attribute. - * - *

- * If the meaning of the 'Att EBoolean 181 m' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 181 m' attribute. - * @see #setAttEBoolean_181_m(boolean) - * @see mm0.Mm0Package#getClass5_AttEBoolean_181_m() - * @model - * @generated - */ - boolean isAttEBoolean_181_m(); - - /** - * Sets the value of the '{@link mm0.Class5#isAttEBoolean_181_m Att EBoolean 181 m}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 181 m' attribute. - * @see #isAttEBoolean_181_m() - * @generated - */ - void setAttEBoolean_181_m(boolean value); - -} // Class5 diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class6.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class6.java deleted file mode 100644 index 5631a14e69be076e8687625d27d3f96481e45fe6..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class6.java +++ /dev/null @@ -1,563 +0,0 @@ -/** - */ -package mm0; - -import org.eclipse.emf.ecore.EObject; - -/** - * - * A representation of the model object 'Class6'. - * - * - *

- * The following features are supported: - *

    - *
  • {@link mm0.Class6#isAttEBoolean_17 Att EBoolean 17}
  • - *
  • {@link mm0.Class6#getRefClass1_38 Ref Class1 38}
  • - *
  • {@link mm0.Class6#isAttEBoolean_42 Att EBoolean 42}
  • - *
  • {@link mm0.Class6#isAttEBoolean_52 Att EBoolean 52}
  • - *
  • {@link mm0.Class6#getRefClass4_57 Ref Class4 57}
  • - *
  • {@link mm0.Class6#isAttEBoolean_71 Att EBoolean 71}
  • - *
  • {@link mm0.Class6#isAttEBoolean_77 Att EBoolean 77}
  • - *
  • {@link mm0.Class6#isAttEBoolean_83 Att EBoolean 83}
  • - *
  • {@link mm0.Class6#isAttEBoolean_85 Att EBoolean 85}
  • - *
  • {@link mm0.Class6#getRefClass1_110 Ref Class1 110}
  • - *
  • {@link mm0.Class6#isAttEBoolean_111 Att EBoolean 111}
  • - *
  • {@link mm0.Class6#getAttEInt_129 Att EInt 129}
  • - *
  • {@link mm0.Class6#isAttEBoolean_131 Att EBoolean 131}
  • - *
  • {@link mm0.Class6#isAttEBoolean_141 Att EBoolean 141}
  • - *
  • {@link mm0.Class6#isAttEBoolean_147 Att EBoolean 147}
  • - *
  • {@link mm0.Class6#getAttEInt_158 Att EInt 158}
  • - *
  • {@link mm0.Class6#isAttEBoolean_160 Att EBoolean 160}
  • - *
  • {@link mm0.Class6#getAttEInt_162 Att EInt 162}
  • - *
  • {@link mm0.Class6#getAttEInt_176_m Att EInt 176 m}
  • - *
  • {@link mm0.Class6#isAttEBoolean_184_m Att EBoolean 184 m}
  • - *
- *

- * - * @see mm0.Mm0Package#getClass6() - * @model - * @generated - */ -public interface Class6 extends EObject { - /** - * Returns the value of the 'Att EBoolean 17' attribute. - * - *

- * If the meaning of the 'Att EBoolean 17' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 17' attribute. - * @see #setAttEBoolean_17(boolean) - * @see mm0.Mm0Package#getClass6_AttEBoolean_17() - * @model - * @generated - */ - boolean isAttEBoolean_17(); - - /** - * Sets the value of the '{@link mm0.Class6#isAttEBoolean_17 Att EBoolean 17}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 17' attribute. - * @see #isAttEBoolean_17() - * @generated - */ - void setAttEBoolean_17(boolean value); - - /** - * Returns the value of the 'Ref Class1 38' reference. - * - *

- * If the meaning of the 'Ref Class1 38' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class1 38' reference. - * @see #setRefClass1_38(Class1) - * @see mm0.Mm0Package#getClass6_RefClass1_38() - * @model - * @generated - */ - Class1 getRefClass1_38(); - - /** - * Sets the value of the '{@link mm0.Class6#getRefClass1_38 Ref Class1 38}' reference. - * - * - * @param value the new value of the 'Ref Class1 38' reference. - * @see #getRefClass1_38() - * @generated - */ - void setRefClass1_38(Class1 value); - - /** - * Returns the value of the 'Att EBoolean 42' attribute. - * - *

- * If the meaning of the 'Att EBoolean 42' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 42' attribute. - * @see #setAttEBoolean_42(boolean) - * @see mm0.Mm0Package#getClass6_AttEBoolean_42() - * @model - * @generated - */ - boolean isAttEBoolean_42(); - - /** - * Sets the value of the '{@link mm0.Class6#isAttEBoolean_42 Att EBoolean 42}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 42' attribute. - * @see #isAttEBoolean_42() - * @generated - */ - void setAttEBoolean_42(boolean value); - - /** - * Returns the value of the 'Att EBoolean 52' attribute. - * - *

- * If the meaning of the 'Att EBoolean 52' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 52' attribute. - * @see #setAttEBoolean_52(boolean) - * @see mm0.Mm0Package#getClass6_AttEBoolean_52() - * @model - * @generated - */ - boolean isAttEBoolean_52(); - - /** - * Sets the value of the '{@link mm0.Class6#isAttEBoolean_52 Att EBoolean 52}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 52' attribute. - * @see #isAttEBoolean_52() - * @generated - */ - void setAttEBoolean_52(boolean value); - - /** - * Returns the value of the 'Ref Class4 57' reference. - * - *

- * If the meaning of the 'Ref Class4 57' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class4 57' reference. - * @see #setRefClass4_57(Class4) - * @see mm0.Mm0Package#getClass6_RefClass4_57() - * @model - * @generated - */ - Class4 getRefClass4_57(); - - /** - * Sets the value of the '{@link mm0.Class6#getRefClass4_57 Ref Class4 57}' reference. - * - * - * @param value the new value of the 'Ref Class4 57' reference. - * @see #getRefClass4_57() - * @generated - */ - void setRefClass4_57(Class4 value); - - /** - * Returns the value of the 'Att EBoolean 71' attribute. - * - *

- * If the meaning of the 'Att EBoolean 71' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 71' attribute. - * @see #setAttEBoolean_71(boolean) - * @see mm0.Mm0Package#getClass6_AttEBoolean_71() - * @model - * @generated - */ - boolean isAttEBoolean_71(); - - /** - * Sets the value of the '{@link mm0.Class6#isAttEBoolean_71 Att EBoolean 71}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 71' attribute. - * @see #isAttEBoolean_71() - * @generated - */ - void setAttEBoolean_71(boolean value); - - /** - * Returns the value of the 'Att EBoolean 77' attribute. - * - *

- * If the meaning of the 'Att EBoolean 77' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 77' attribute. - * @see #setAttEBoolean_77(boolean) - * @see mm0.Mm0Package#getClass6_AttEBoolean_77() - * @model - * @generated - */ - boolean isAttEBoolean_77(); - - /** - * Sets the value of the '{@link mm0.Class6#isAttEBoolean_77 Att EBoolean 77}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 77' attribute. - * @see #isAttEBoolean_77() - * @generated - */ - void setAttEBoolean_77(boolean value); - - /** - * Returns the value of the 'Att EBoolean 83' attribute. - * - *

- * If the meaning of the 'Att EBoolean 83' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 83' attribute. - * @see #setAttEBoolean_83(boolean) - * @see mm0.Mm0Package#getClass6_AttEBoolean_83() - * @model - * @generated - */ - boolean isAttEBoolean_83(); - - /** - * Sets the value of the '{@link mm0.Class6#isAttEBoolean_83 Att EBoolean 83}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 83' attribute. - * @see #isAttEBoolean_83() - * @generated - */ - void setAttEBoolean_83(boolean value); - - /** - * Returns the value of the 'Att EBoolean 85' attribute. - * - *

- * If the meaning of the 'Att EBoolean 85' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 85' attribute. - * @see #setAttEBoolean_85(boolean) - * @see mm0.Mm0Package#getClass6_AttEBoolean_85() - * @model - * @generated - */ - boolean isAttEBoolean_85(); - - /** - * Sets the value of the '{@link mm0.Class6#isAttEBoolean_85 Att EBoolean 85}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 85' attribute. - * @see #isAttEBoolean_85() - * @generated - */ - void setAttEBoolean_85(boolean value); - - /** - * Returns the value of the 'Ref Class1 110' reference. - * - *

- * If the meaning of the 'Ref Class1 110' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class1 110' reference. - * @see #setRefClass1_110(Class1) - * @see mm0.Mm0Package#getClass6_RefClass1_110() - * @model - * @generated - */ - Class1 getRefClass1_110(); - - /** - * Sets the value of the '{@link mm0.Class6#getRefClass1_110 Ref Class1 110}' reference. - * - * - * @param value the new value of the 'Ref Class1 110' reference. - * @see #getRefClass1_110() - * @generated - */ - void setRefClass1_110(Class1 value); - - /** - * Returns the value of the 'Att EBoolean 111' attribute. - * - *

- * If the meaning of the 'Att EBoolean 111' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 111' attribute. - * @see #setAttEBoolean_111(boolean) - * @see mm0.Mm0Package#getClass6_AttEBoolean_111() - * @model - * @generated - */ - boolean isAttEBoolean_111(); - - /** - * Sets the value of the '{@link mm0.Class6#isAttEBoolean_111 Att EBoolean 111}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 111' attribute. - * @see #isAttEBoolean_111() - * @generated - */ - void setAttEBoolean_111(boolean value); - - /** - * Returns the value of the 'Att EInt 129' attribute. - * - *

- * If the meaning of the 'Att EInt 129' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 129' attribute. - * @see #setAttEInt_129(int) - * @see mm0.Mm0Package#getClass6_AttEInt_129() - * @model - * @generated - */ - int getAttEInt_129(); - - /** - * Sets the value of the '{@link mm0.Class6#getAttEInt_129 Att EInt 129}' attribute. - * - * - * @param value the new value of the 'Att EInt 129' attribute. - * @see #getAttEInt_129() - * @generated - */ - void setAttEInt_129(int value); - - /** - * Returns the value of the 'Att EBoolean 131' attribute. - * - *

- * If the meaning of the 'Att EBoolean 131' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 131' attribute. - * @see #setAttEBoolean_131(boolean) - * @see mm0.Mm0Package#getClass6_AttEBoolean_131() - * @model - * @generated - */ - boolean isAttEBoolean_131(); - - /** - * Sets the value of the '{@link mm0.Class6#isAttEBoolean_131 Att EBoolean 131}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 131' attribute. - * @see #isAttEBoolean_131() - * @generated - */ - void setAttEBoolean_131(boolean value); - - /** - * Returns the value of the 'Att EBoolean 141' attribute. - * - *

- * If the meaning of the 'Att EBoolean 141' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 141' attribute. - * @see #setAttEBoolean_141(boolean) - * @see mm0.Mm0Package#getClass6_AttEBoolean_141() - * @model - * @generated - */ - boolean isAttEBoolean_141(); - - /** - * Sets the value of the '{@link mm0.Class6#isAttEBoolean_141 Att EBoolean 141}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 141' attribute. - * @see #isAttEBoolean_141() - * @generated - */ - void setAttEBoolean_141(boolean value); - - /** - * Returns the value of the 'Att EBoolean 147' attribute. - * - *

- * If the meaning of the 'Att EBoolean 147' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 147' attribute. - * @see #setAttEBoolean_147(boolean) - * @see mm0.Mm0Package#getClass6_AttEBoolean_147() - * @model - * @generated - */ - boolean isAttEBoolean_147(); - - /** - * Sets the value of the '{@link mm0.Class6#isAttEBoolean_147 Att EBoolean 147}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 147' attribute. - * @see #isAttEBoolean_147() - * @generated - */ - void setAttEBoolean_147(boolean value); - - /** - * Returns the value of the 'Att EInt 158' attribute. - * - *

- * If the meaning of the 'Att EInt 158' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 158' attribute. - * @see #setAttEInt_158(int) - * @see mm0.Mm0Package#getClass6_AttEInt_158() - * @model - * @generated - */ - int getAttEInt_158(); - - /** - * Sets the value of the '{@link mm0.Class6#getAttEInt_158 Att EInt 158}' attribute. - * - * - * @param value the new value of the 'Att EInt 158' attribute. - * @see #getAttEInt_158() - * @generated - */ - void setAttEInt_158(int value); - - /** - * Returns the value of the 'Att EBoolean 160' attribute. - * - *

- * If the meaning of the 'Att EBoolean 160' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 160' attribute. - * @see #setAttEBoolean_160(boolean) - * @see mm0.Mm0Package#getClass6_AttEBoolean_160() - * @model - * @generated - */ - boolean isAttEBoolean_160(); - - /** - * Sets the value of the '{@link mm0.Class6#isAttEBoolean_160 Att EBoolean 160}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 160' attribute. - * @see #isAttEBoolean_160() - * @generated - */ - void setAttEBoolean_160(boolean value); - - /** - * Returns the value of the 'Att EInt 162' attribute. - * - *

- * If the meaning of the 'Att EInt 162' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 162' attribute. - * @see #setAttEInt_162(int) - * @see mm0.Mm0Package#getClass6_AttEInt_162() - * @model - * @generated - */ - int getAttEInt_162(); - - /** - * Sets the value of the '{@link mm0.Class6#getAttEInt_162 Att EInt 162}' attribute. - * - * - * @param value the new value of the 'Att EInt 162' attribute. - * @see #getAttEInt_162() - * @generated - */ - void setAttEInt_162(int value); - - /** - * Returns the value of the 'Att EInt 176 m' attribute. - * - *

- * If the meaning of the 'Att EInt 176 m' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 176 m' attribute. - * @see #setAttEInt_176_m(int) - * @see mm0.Mm0Package#getClass6_AttEInt_176_m() - * @model - * @generated - */ - int getAttEInt_176_m(); - - /** - * Sets the value of the '{@link mm0.Class6#getAttEInt_176_m Att EInt 176 m}' attribute. - * - * - * @param value the new value of the 'Att EInt 176 m' attribute. - * @see #getAttEInt_176_m() - * @generated - */ - void setAttEInt_176_m(int value); - - /** - * Returns the value of the 'Att EBoolean 184 m' attribute. - * - *

- * If the meaning of the 'Att EBoolean 184 m' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 184 m' attribute. - * @see #setAttEBoolean_184_m(boolean) - * @see mm0.Mm0Package#getClass6_AttEBoolean_184_m() - * @model - * @generated - */ - boolean isAttEBoolean_184_m(); - - /** - * Sets the value of the '{@link mm0.Class6#isAttEBoolean_184_m Att EBoolean 184 m}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 184 m' attribute. - * @see #isAttEBoolean_184_m() - * @generated - */ - void setAttEBoolean_184_m(boolean value); - -} // Class6 diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class7.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class7.java deleted file mode 100644 index 6dd7878fda1816cce9e5d77a3502b1b978a18f5e..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class7.java +++ /dev/null @@ -1,374 +0,0 @@ -/** - */ -package mm0; - -import org.eclipse.emf.ecore.EObject; - -/** - * - * A representation of the model object 'Class7'. - * - * - *

- * The following features are supported: - *

    - *
  • {@link mm0.Class7#isAttEBoolean_37 Att EBoolean 37}
  • - *
  • {@link mm0.Class7#isAttEBoolean_47 Att EBoolean 47}
  • - *
  • {@link mm0.Class7#getAttEInt_56 Att EInt 56}
  • - *
  • {@link mm0.Class7#isAttEBoolean_82 Att EBoolean 82}
  • - *
  • {@link mm0.Class7#getAttEInt_91 Att EInt 91}
  • - *
  • {@link mm0.Class7#getAttEInt_95 Att EInt 95}
  • - *
  • {@link mm0.Class7#getAttEInt_96 Att EInt 96}
  • - *
  • {@link mm0.Class7#getAttEInt_134 Att EInt 134}
  • - *
  • {@link mm0.Class7#getAttEInt_136 Att EInt 136}
  • - *
  • {@link mm0.Class7#getRefClass7_137 Ref Class7 137}
  • - *
  • {@link mm0.Class7#getAttEInt_153 Att EInt 153}
  • - *
  • {@link mm0.Class7#getAttEInt_157 Att EInt 157}
  • - *
  • {@link mm0.Class7#isAttEBoolean_177_m Att EBoolean 177 m}
  • - *
- *

- * - * @see mm0.Mm0Package#getClass7() - * @model - * @generated - */ -public interface Class7 extends EObject { - /** - * Returns the value of the 'Att EBoolean 37' attribute. - * - *

- * If the meaning of the 'Att EBoolean 37' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 37' attribute. - * @see #setAttEBoolean_37(boolean) - * @see mm0.Mm0Package#getClass7_AttEBoolean_37() - * @model - * @generated - */ - boolean isAttEBoolean_37(); - - /** - * Sets the value of the '{@link mm0.Class7#isAttEBoolean_37 Att EBoolean 37}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 37' attribute. - * @see #isAttEBoolean_37() - * @generated - */ - void setAttEBoolean_37(boolean value); - - /** - * Returns the value of the 'Att EBoolean 47' attribute. - * - *

- * If the meaning of the 'Att EBoolean 47' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 47' attribute. - * @see #setAttEBoolean_47(boolean) - * @see mm0.Mm0Package#getClass7_AttEBoolean_47() - * @model - * @generated - */ - boolean isAttEBoolean_47(); - - /** - * Sets the value of the '{@link mm0.Class7#isAttEBoolean_47 Att EBoolean 47}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 47' attribute. - * @see #isAttEBoolean_47() - * @generated - */ - void setAttEBoolean_47(boolean value); - - /** - * Returns the value of the 'Att EInt 56' attribute. - * - *

- * If the meaning of the 'Att EInt 56' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 56' attribute. - * @see #setAttEInt_56(int) - * @see mm0.Mm0Package#getClass7_AttEInt_56() - * @model - * @generated - */ - int getAttEInt_56(); - - /** - * Sets the value of the '{@link mm0.Class7#getAttEInt_56 Att EInt 56}' attribute. - * - * - * @param value the new value of the 'Att EInt 56' attribute. - * @see #getAttEInt_56() - * @generated - */ - void setAttEInt_56(int value); - - /** - * Returns the value of the 'Att EBoolean 82' attribute. - * - *

- * If the meaning of the 'Att EBoolean 82' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 82' attribute. - * @see #setAttEBoolean_82(boolean) - * @see mm0.Mm0Package#getClass7_AttEBoolean_82() - * @model - * @generated - */ - boolean isAttEBoolean_82(); - - /** - * Sets the value of the '{@link mm0.Class7#isAttEBoolean_82 Att EBoolean 82}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 82' attribute. - * @see #isAttEBoolean_82() - * @generated - */ - void setAttEBoolean_82(boolean value); - - /** - * Returns the value of the 'Att EInt 91' attribute. - * - *

- * If the meaning of the 'Att EInt 91' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 91' attribute. - * @see #setAttEInt_91(int) - * @see mm0.Mm0Package#getClass7_AttEInt_91() - * @model - * @generated - */ - int getAttEInt_91(); - - /** - * Sets the value of the '{@link mm0.Class7#getAttEInt_91 Att EInt 91}' attribute. - * - * - * @param value the new value of the 'Att EInt 91' attribute. - * @see #getAttEInt_91() - * @generated - */ - void setAttEInt_91(int value); - - /** - * Returns the value of the 'Att EInt 95' attribute. - * - *

- * If the meaning of the 'Att EInt 95' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 95' attribute. - * @see #setAttEInt_95(int) - * @see mm0.Mm0Package#getClass7_AttEInt_95() - * @model - * @generated - */ - int getAttEInt_95(); - - /** - * Sets the value of the '{@link mm0.Class7#getAttEInt_95 Att EInt 95}' attribute. - * - * - * @param value the new value of the 'Att EInt 95' attribute. - * @see #getAttEInt_95() - * @generated - */ - void setAttEInt_95(int value); - - /** - * Returns the value of the 'Att EInt 96' attribute. - * - *

- * If the meaning of the 'Att EInt 96' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 96' attribute. - * @see #setAttEInt_96(int) - * @see mm0.Mm0Package#getClass7_AttEInt_96() - * @model - * @generated - */ - int getAttEInt_96(); - - /** - * Sets the value of the '{@link mm0.Class7#getAttEInt_96 Att EInt 96}' attribute. - * - * - * @param value the new value of the 'Att EInt 96' attribute. - * @see #getAttEInt_96() - * @generated - */ - void setAttEInt_96(int value); - - /** - * Returns the value of the 'Att EInt 134' attribute. - * - *

- * If the meaning of the 'Att EInt 134' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 134' attribute. - * @see #setAttEInt_134(int) - * @see mm0.Mm0Package#getClass7_AttEInt_134() - * @model - * @generated - */ - int getAttEInt_134(); - - /** - * Sets the value of the '{@link mm0.Class7#getAttEInt_134 Att EInt 134}' attribute. - * - * - * @param value the new value of the 'Att EInt 134' attribute. - * @see #getAttEInt_134() - * @generated - */ - void setAttEInt_134(int value); - - /** - * Returns the value of the 'Att EInt 136' attribute. - * - *

- * If the meaning of the 'Att EInt 136' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 136' attribute. - * @see #setAttEInt_136(int) - * @see mm0.Mm0Package#getClass7_AttEInt_136() - * @model - * @generated - */ - int getAttEInt_136(); - - /** - * Sets the value of the '{@link mm0.Class7#getAttEInt_136 Att EInt 136}' attribute. - * - * - * @param value the new value of the 'Att EInt 136' attribute. - * @see #getAttEInt_136() - * @generated - */ - void setAttEInt_136(int value); - - /** - * Returns the value of the 'Ref Class7 137' reference. - * - *

- * If the meaning of the 'Ref Class7 137' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class7 137' reference. - * @see #setRefClass7_137(Class7) - * @see mm0.Mm0Package#getClass7_RefClass7_137() - * @model - * @generated - */ - Class7 getRefClass7_137(); - - /** - * Sets the value of the '{@link mm0.Class7#getRefClass7_137 Ref Class7 137}' reference. - * - * - * @param value the new value of the 'Ref Class7 137' reference. - * @see #getRefClass7_137() - * @generated - */ - void setRefClass7_137(Class7 value); - - /** - * Returns the value of the 'Att EInt 153' attribute. - * - *

- * If the meaning of the 'Att EInt 153' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 153' attribute. - * @see #setAttEInt_153(int) - * @see mm0.Mm0Package#getClass7_AttEInt_153() - * @model - * @generated - */ - int getAttEInt_153(); - - /** - * Sets the value of the '{@link mm0.Class7#getAttEInt_153 Att EInt 153}' attribute. - * - * - * @param value the new value of the 'Att EInt 153' attribute. - * @see #getAttEInt_153() - * @generated - */ - void setAttEInt_153(int value); - - /** - * Returns the value of the 'Att EInt 157' attribute. - * - *

- * If the meaning of the 'Att EInt 157' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 157' attribute. - * @see #setAttEInt_157(int) - * @see mm0.Mm0Package#getClass7_AttEInt_157() - * @model - * @generated - */ - int getAttEInt_157(); - - /** - * Sets the value of the '{@link mm0.Class7#getAttEInt_157 Att EInt 157}' attribute. - * - * - * @param value the new value of the 'Att EInt 157' attribute. - * @see #getAttEInt_157() - * @generated - */ - void setAttEInt_157(int value); - - /** - * Returns the value of the 'Att EBoolean 177 m' attribute. - * - *

- * If the meaning of the 'Att EBoolean 177 m' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 177 m' attribute. - * @see #setAttEBoolean_177_m(boolean) - * @see mm0.Mm0Package#getClass7_AttEBoolean_177_m() - * @model - * @generated - */ - boolean isAttEBoolean_177_m(); - - /** - * Sets the value of the '{@link mm0.Class7#isAttEBoolean_177_m Att EBoolean 177 m}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 177 m' attribute. - * @see #isAttEBoolean_177_m() - * @generated - */ - void setAttEBoolean_177_m(boolean value); - -} // Class7 diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class8.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class8.java deleted file mode 100644 index bac39c243c723d924136f8086c2f75509060fa30..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class8.java +++ /dev/null @@ -1,428 +0,0 @@ -/** - */ -package mm0; - -import org.eclipse.emf.ecore.EObject; - -/** - * - * A representation of the model object 'Class8'. - * - * - *

- * The following features are supported: - *

    - *
  • {@link mm0.Class8#getAttEInt_9 Att EInt 9}
  • - *
  • {@link mm0.Class8#getAttEInt_14 Att EInt 14}
  • - *
  • {@link mm0.Class8#getAttEInt_25 Att EInt 25}
  • - *
  • {@link mm0.Class8#getAttEInt_33 Att EInt 33}
  • - *
  • {@link mm0.Class8#isAttEBoolean_34 Att EBoolean 34}
  • - *
  • {@link mm0.Class8#isAttEBoolean_43 Att EBoolean 43}
  • - *
  • {@link mm0.Class8#isAttEBoolean_51 Att EBoolean 51}
  • - *
  • {@link mm0.Class8#isAttEBoolean_64 Att EBoolean 64}
  • - *
  • {@link mm0.Class8#isAttEBoolean_75 Att EBoolean 75}
  • - *
  • {@link mm0.Class8#getAttEInt_86 Att EInt 86}
  • - *
  • {@link mm0.Class8#getRefClass9_97 Ref Class9 97}
  • - *
  • {@link mm0.Class8#getRefClass7_115 Ref Class7 115}
  • - *
  • {@link mm0.Class8#isAttEBoolean_126 Att EBoolean 126}
  • - *
  • {@link mm0.Class8#isAttEBoolean_145 Att EBoolean 145}
  • - *
  • {@link mm0.Class8#getAttEInt_164 Att EInt 164}
  • - *
- *

- * - * @see mm0.Mm0Package#getClass8() - * @model - * @generated - */ -public interface Class8 extends EObject { - /** - * Returns the value of the 'Att EInt 9' attribute. - * - *

- * If the meaning of the 'Att EInt 9' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 9' attribute. - * @see #setAttEInt_9(int) - * @see mm0.Mm0Package#getClass8_AttEInt_9() - * @model - * @generated - */ - int getAttEInt_9(); - - /** - * Sets the value of the '{@link mm0.Class8#getAttEInt_9 Att EInt 9}' attribute. - * - * - * @param value the new value of the 'Att EInt 9' attribute. - * @see #getAttEInt_9() - * @generated - */ - void setAttEInt_9(int value); - - /** - * Returns the value of the 'Att EInt 14' attribute. - * - *

- * If the meaning of the 'Att EInt 14' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 14' attribute. - * @see #setAttEInt_14(int) - * @see mm0.Mm0Package#getClass8_AttEInt_14() - * @model - * @generated - */ - int getAttEInt_14(); - - /** - * Sets the value of the '{@link mm0.Class8#getAttEInt_14 Att EInt 14}' attribute. - * - * - * @param value the new value of the 'Att EInt 14' attribute. - * @see #getAttEInt_14() - * @generated - */ - void setAttEInt_14(int value); - - /** - * Returns the value of the 'Att EInt 25' attribute. - * - *

- * If the meaning of the 'Att EInt 25' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 25' attribute. - * @see #setAttEInt_25(int) - * @see mm0.Mm0Package#getClass8_AttEInt_25() - * @model - * @generated - */ - int getAttEInt_25(); - - /** - * Sets the value of the '{@link mm0.Class8#getAttEInt_25 Att EInt 25}' attribute. - * - * - * @param value the new value of the 'Att EInt 25' attribute. - * @see #getAttEInt_25() - * @generated - */ - void setAttEInt_25(int value); - - /** - * Returns the value of the 'Att EInt 33' attribute. - * - *

- * If the meaning of the 'Att EInt 33' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 33' attribute. - * @see #setAttEInt_33(int) - * @see mm0.Mm0Package#getClass8_AttEInt_33() - * @model - * @generated - */ - int getAttEInt_33(); - - /** - * Sets the value of the '{@link mm0.Class8#getAttEInt_33 Att EInt 33}' attribute. - * - * - * @param value the new value of the 'Att EInt 33' attribute. - * @see #getAttEInt_33() - * @generated - */ - void setAttEInt_33(int value); - - /** - * Returns the value of the 'Att EBoolean 34' attribute. - * - *

- * If the meaning of the 'Att EBoolean 34' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 34' attribute. - * @see #setAttEBoolean_34(boolean) - * @see mm0.Mm0Package#getClass8_AttEBoolean_34() - * @model - * @generated - */ - boolean isAttEBoolean_34(); - - /** - * Sets the value of the '{@link mm0.Class8#isAttEBoolean_34 Att EBoolean 34}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 34' attribute. - * @see #isAttEBoolean_34() - * @generated - */ - void setAttEBoolean_34(boolean value); - - /** - * Returns the value of the 'Att EBoolean 43' attribute. - * - *

- * If the meaning of the 'Att EBoolean 43' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 43' attribute. - * @see #setAttEBoolean_43(boolean) - * @see mm0.Mm0Package#getClass8_AttEBoolean_43() - * @model - * @generated - */ - boolean isAttEBoolean_43(); - - /** - * Sets the value of the '{@link mm0.Class8#isAttEBoolean_43 Att EBoolean 43}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 43' attribute. - * @see #isAttEBoolean_43() - * @generated - */ - void setAttEBoolean_43(boolean value); - - /** - * Returns the value of the 'Att EBoolean 51' attribute. - * - *

- * If the meaning of the 'Att EBoolean 51' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 51' attribute. - * @see #setAttEBoolean_51(boolean) - * @see mm0.Mm0Package#getClass8_AttEBoolean_51() - * @model - * @generated - */ - boolean isAttEBoolean_51(); - - /** - * Sets the value of the '{@link mm0.Class8#isAttEBoolean_51 Att EBoolean 51}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 51' attribute. - * @see #isAttEBoolean_51() - * @generated - */ - void setAttEBoolean_51(boolean value); - - /** - * Returns the value of the 'Att EBoolean 64' attribute. - * - *

- * If the meaning of the 'Att EBoolean 64' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 64' attribute. - * @see #setAttEBoolean_64(boolean) - * @see mm0.Mm0Package#getClass8_AttEBoolean_64() - * @model - * @generated - */ - boolean isAttEBoolean_64(); - - /** - * Sets the value of the '{@link mm0.Class8#isAttEBoolean_64 Att EBoolean 64}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 64' attribute. - * @see #isAttEBoolean_64() - * @generated - */ - void setAttEBoolean_64(boolean value); - - /** - * Returns the value of the 'Att EBoolean 75' attribute. - * - *

- * If the meaning of the 'Att EBoolean 75' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 75' attribute. - * @see #setAttEBoolean_75(boolean) - * @see mm0.Mm0Package#getClass8_AttEBoolean_75() - * @model - * @generated - */ - boolean isAttEBoolean_75(); - - /** - * Sets the value of the '{@link mm0.Class8#isAttEBoolean_75 Att EBoolean 75}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 75' attribute. - * @see #isAttEBoolean_75() - * @generated - */ - void setAttEBoolean_75(boolean value); - - /** - * Returns the value of the 'Att EInt 86' attribute. - * - *

- * If the meaning of the 'Att EInt 86' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 86' attribute. - * @see #setAttEInt_86(int) - * @see mm0.Mm0Package#getClass8_AttEInt_86() - * @model - * @generated - */ - int getAttEInt_86(); - - /** - * Sets the value of the '{@link mm0.Class8#getAttEInt_86 Att EInt 86}' attribute. - * - * - * @param value the new value of the 'Att EInt 86' attribute. - * @see #getAttEInt_86() - * @generated - */ - void setAttEInt_86(int value); - - /** - * Returns the value of the 'Ref Class9 97' reference. - * - *

- * If the meaning of the 'Ref Class9 97' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class9 97' reference. - * @see #setRefClass9_97(Class9) - * @see mm0.Mm0Package#getClass8_RefClass9_97() - * @model - * @generated - */ - Class9 getRefClass9_97(); - - /** - * Sets the value of the '{@link mm0.Class8#getRefClass9_97 Ref Class9 97}' reference. - * - * - * @param value the new value of the 'Ref Class9 97' reference. - * @see #getRefClass9_97() - * @generated - */ - void setRefClass9_97(Class9 value); - - /** - * Returns the value of the 'Ref Class7 115' reference. - * - *

- * If the meaning of the 'Ref Class7 115' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class7 115' reference. - * @see #setRefClass7_115(Class7) - * @see mm0.Mm0Package#getClass8_RefClass7_115() - * @model - * @generated - */ - Class7 getRefClass7_115(); - - /** - * Sets the value of the '{@link mm0.Class8#getRefClass7_115 Ref Class7 115}' reference. - * - * - * @param value the new value of the 'Ref Class7 115' reference. - * @see #getRefClass7_115() - * @generated - */ - void setRefClass7_115(Class7 value); - - /** - * Returns the value of the 'Att EBoolean 126' attribute. - * - *

- * If the meaning of the 'Att EBoolean 126' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 126' attribute. - * @see #setAttEBoolean_126(boolean) - * @see mm0.Mm0Package#getClass8_AttEBoolean_126() - * @model - * @generated - */ - boolean isAttEBoolean_126(); - - /** - * Sets the value of the '{@link mm0.Class8#isAttEBoolean_126 Att EBoolean 126}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 126' attribute. - * @see #isAttEBoolean_126() - * @generated - */ - void setAttEBoolean_126(boolean value); - - /** - * Returns the value of the 'Att EBoolean 145' attribute. - * - *

- * If the meaning of the 'Att EBoolean 145' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 145' attribute. - * @see #setAttEBoolean_145(boolean) - * @see mm0.Mm0Package#getClass8_AttEBoolean_145() - * @model - * @generated - */ - boolean isAttEBoolean_145(); - - /** - * Sets the value of the '{@link mm0.Class8#isAttEBoolean_145 Att EBoolean 145}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 145' attribute. - * @see #isAttEBoolean_145() - * @generated - */ - void setAttEBoolean_145(boolean value); - - /** - * Returns the value of the 'Att EInt 164' attribute. - * - *

- * If the meaning of the 'Att EInt 164' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 164' attribute. - * @see #setAttEInt_164(int) - * @see mm0.Mm0Package#getClass8_AttEInt_164() - * @model - * @generated - */ - int getAttEInt_164(); - - /** - * Sets the value of the '{@link mm0.Class8#getAttEInt_164 Att EInt 164}' attribute. - * - * - * @param value the new value of the 'Att EInt 164' attribute. - * @see #getAttEInt_164() - * @generated - */ - void setAttEInt_164(int value); - -} // Class8 diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class9.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class9.java deleted file mode 100644 index c504aabc164ab137feb2a4ea4c253bcf91698373..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Class9.java +++ /dev/null @@ -1,401 +0,0 @@ -/** - */ -package mm0; - -import org.eclipse.emf.ecore.EObject; - -/** - * - * A representation of the model object 'Class9'. - * - * - *

- * The following features are supported: - *

    - *
  • {@link mm0.Class9#isAttEBoolean_3 Att EBoolean 3}
  • - *
  • {@link mm0.Class9#getAttEInt_24 Att EInt 24}
  • - *
  • {@link mm0.Class9#getAttEInt_29 Att EInt 29}
  • - *
  • {@link mm0.Class9#getRefClass8_45 Ref Class8 45}
  • - *
  • {@link mm0.Class9#getRefClass4_61 Ref Class4 61}
  • - *
  • {@link mm0.Class9#isAttEBoolean_70 Att EBoolean 70}
  • - *
  • {@link mm0.Class9#getAttEInt_93 Att EInt 93}
  • - *
  • {@link mm0.Class9#isAttEBoolean_103 Att EBoolean 103}
  • - *
  • {@link mm0.Class9#getAttEInt_106 Att EInt 106}
  • - *
  • {@link mm0.Class9#getAttEInt_130 Att EInt 130}
  • - *
  • {@link mm0.Class9#getRefClass8_143 Ref Class8 143}
  • - *
  • {@link mm0.Class9#isAttEBoolean_166 Att EBoolean 166}
  • - *
  • {@link mm0.Class9#isAttEBoolean_168 Att EBoolean 168}
  • - *
  • {@link mm0.Class9#isAttEBoolean_178_m Att EBoolean 178 m}
  • - *
- *

- * - * @see mm0.Mm0Package#getClass9() - * @model - * @generated - */ -public interface Class9 extends EObject { - /** - * Returns the value of the 'Att EBoolean 3' attribute. - * - *

- * If the meaning of the 'Att EBoolean 3' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 3' attribute. - * @see #setAttEBoolean_3(boolean) - * @see mm0.Mm0Package#getClass9_AttEBoolean_3() - * @model - * @generated - */ - boolean isAttEBoolean_3(); - - /** - * Sets the value of the '{@link mm0.Class9#isAttEBoolean_3 Att EBoolean 3}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 3' attribute. - * @see #isAttEBoolean_3() - * @generated - */ - void setAttEBoolean_3(boolean value); - - /** - * Returns the value of the 'Att EInt 24' attribute. - * - *

- * If the meaning of the 'Att EInt 24' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 24' attribute. - * @see #setAttEInt_24(int) - * @see mm0.Mm0Package#getClass9_AttEInt_24() - * @model - * @generated - */ - int getAttEInt_24(); - - /** - * Sets the value of the '{@link mm0.Class9#getAttEInt_24 Att EInt 24}' attribute. - * - * - * @param value the new value of the 'Att EInt 24' attribute. - * @see #getAttEInt_24() - * @generated - */ - void setAttEInt_24(int value); - - /** - * Returns the value of the 'Att EInt 29' attribute. - * - *

- * If the meaning of the 'Att EInt 29' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 29' attribute. - * @see #setAttEInt_29(int) - * @see mm0.Mm0Package#getClass9_AttEInt_29() - * @model - * @generated - */ - int getAttEInt_29(); - - /** - * Sets the value of the '{@link mm0.Class9#getAttEInt_29 Att EInt 29}' attribute. - * - * - * @param value the new value of the 'Att EInt 29' attribute. - * @see #getAttEInt_29() - * @generated - */ - void setAttEInt_29(int value); - - /** - * Returns the value of the 'Ref Class8 45' reference. - * - *

- * If the meaning of the 'Ref Class8 45' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class8 45' reference. - * @see #setRefClass8_45(Class8) - * @see mm0.Mm0Package#getClass9_RefClass8_45() - * @model - * @generated - */ - Class8 getRefClass8_45(); - - /** - * Sets the value of the '{@link mm0.Class9#getRefClass8_45 Ref Class8 45}' reference. - * - * - * @param value the new value of the 'Ref Class8 45' reference. - * @see #getRefClass8_45() - * @generated - */ - void setRefClass8_45(Class8 value); - - /** - * Returns the value of the 'Ref Class4 61' reference. - * - *

- * If the meaning of the 'Ref Class4 61' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class4 61' reference. - * @see #setRefClass4_61(Class4) - * @see mm0.Mm0Package#getClass9_RefClass4_61() - * @model - * @generated - */ - Class4 getRefClass4_61(); - - /** - * Sets the value of the '{@link mm0.Class9#getRefClass4_61 Ref Class4 61}' reference. - * - * - * @param value the new value of the 'Ref Class4 61' reference. - * @see #getRefClass4_61() - * @generated - */ - void setRefClass4_61(Class4 value); - - /** - * Returns the value of the 'Att EBoolean 70' attribute. - * - *

- * If the meaning of the 'Att EBoolean 70' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 70' attribute. - * @see #setAttEBoolean_70(boolean) - * @see mm0.Mm0Package#getClass9_AttEBoolean_70() - * @model - * @generated - */ - boolean isAttEBoolean_70(); - - /** - * Sets the value of the '{@link mm0.Class9#isAttEBoolean_70 Att EBoolean 70}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 70' attribute. - * @see #isAttEBoolean_70() - * @generated - */ - void setAttEBoolean_70(boolean value); - - /** - * Returns the value of the 'Att EInt 93' attribute. - * - *

- * If the meaning of the 'Att EInt 93' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 93' attribute. - * @see #setAttEInt_93(int) - * @see mm0.Mm0Package#getClass9_AttEInt_93() - * @model - * @generated - */ - int getAttEInt_93(); - - /** - * Sets the value of the '{@link mm0.Class9#getAttEInt_93 Att EInt 93}' attribute. - * - * - * @param value the new value of the 'Att EInt 93' attribute. - * @see #getAttEInt_93() - * @generated - */ - void setAttEInt_93(int value); - - /** - * Returns the value of the 'Att EBoolean 103' attribute. - * - *

- * If the meaning of the 'Att EBoolean 103' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 103' attribute. - * @see #setAttEBoolean_103(boolean) - * @see mm0.Mm0Package#getClass9_AttEBoolean_103() - * @model - * @generated - */ - boolean isAttEBoolean_103(); - - /** - * Sets the value of the '{@link mm0.Class9#isAttEBoolean_103 Att EBoolean 103}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 103' attribute. - * @see #isAttEBoolean_103() - * @generated - */ - void setAttEBoolean_103(boolean value); - - /** - * Returns the value of the 'Att EInt 106' attribute. - * - *

- * If the meaning of the 'Att EInt 106' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 106' attribute. - * @see #setAttEInt_106(int) - * @see mm0.Mm0Package#getClass9_AttEInt_106() - * @model - * @generated - */ - int getAttEInt_106(); - - /** - * Sets the value of the '{@link mm0.Class9#getAttEInt_106 Att EInt 106}' attribute. - * - * - * @param value the new value of the 'Att EInt 106' attribute. - * @see #getAttEInt_106() - * @generated - */ - void setAttEInt_106(int value); - - /** - * Returns the value of the 'Att EInt 130' attribute. - * - *

- * If the meaning of the 'Att EInt 130' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EInt 130' attribute. - * @see #setAttEInt_130(int) - * @see mm0.Mm0Package#getClass9_AttEInt_130() - * @model - * @generated - */ - int getAttEInt_130(); - - /** - * Sets the value of the '{@link mm0.Class9#getAttEInt_130 Att EInt 130}' attribute. - * - * - * @param value the new value of the 'Att EInt 130' attribute. - * @see #getAttEInt_130() - * @generated - */ - void setAttEInt_130(int value); - - /** - * Returns the value of the 'Ref Class8 143' reference. - * - *

- * If the meaning of the 'Ref Class8 143' reference isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Ref Class8 143' reference. - * @see #setRefClass8_143(Class8) - * @see mm0.Mm0Package#getClass9_RefClass8_143() - * @model - * @generated - */ - Class8 getRefClass8_143(); - - /** - * Sets the value of the '{@link mm0.Class9#getRefClass8_143 Ref Class8 143}' reference. - * - * - * @param value the new value of the 'Ref Class8 143' reference. - * @see #getRefClass8_143() - * @generated - */ - void setRefClass8_143(Class8 value); - - /** - * Returns the value of the 'Att EBoolean 166' attribute. - * - *

- * If the meaning of the 'Att EBoolean 166' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 166' attribute. - * @see #setAttEBoolean_166(boolean) - * @see mm0.Mm0Package#getClass9_AttEBoolean_166() - * @model - * @generated - */ - boolean isAttEBoolean_166(); - - /** - * Sets the value of the '{@link mm0.Class9#isAttEBoolean_166 Att EBoolean 166}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 166' attribute. - * @see #isAttEBoolean_166() - * @generated - */ - void setAttEBoolean_166(boolean value); - - /** - * Returns the value of the 'Att EBoolean 168' attribute. - * - *

- * If the meaning of the 'Att EBoolean 168' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 168' attribute. - * @see #setAttEBoolean_168(boolean) - * @see mm0.Mm0Package#getClass9_AttEBoolean_168() - * @model - * @generated - */ - boolean isAttEBoolean_168(); - - /** - * Sets the value of the '{@link mm0.Class9#isAttEBoolean_168 Att EBoolean 168}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 168' attribute. - * @see #isAttEBoolean_168() - * @generated - */ - void setAttEBoolean_168(boolean value); - - /** - * Returns the value of the 'Att EBoolean 178 m' attribute. - * - *

- * If the meaning of the 'Att EBoolean 178 m' attribute isn't clear, - * there really should be more of a description here... - *

- * - * @return the value of the 'Att EBoolean 178 m' attribute. - * @see #setAttEBoolean_178_m(boolean) - * @see mm0.Mm0Package#getClass9_AttEBoolean_178_m() - * @model - * @generated - */ - boolean isAttEBoolean_178_m(); - - /** - * Sets the value of the '{@link mm0.Class9#isAttEBoolean_178_m Att EBoolean 178 m}' attribute. - * - * - * @param value the new value of the 'Att EBoolean 178 m' attribute. - * @see #isAttEBoolean_178_m() - * @generated - */ - void setAttEBoolean_178_m(boolean value); - -} // Class9 diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Mm0Factory.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/Mm0Factory.java deleted file mode 100644 index b18d5e0584b4aa5e4c44277f8701a166e5b36e44..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Mm0Factory.java +++ /dev/null @@ -1,132 +0,0 @@ -/** - */ -package mm0; - -import org.eclipse.emf.ecore.EFactory; - -/** - * - * The Factory for the model. - * It provides a create method for each non-abstract class of the model. - * - * @see mm0.Mm0Package - * @generated - */ -public interface Mm0Factory extends EFactory { - /** - * The singleton instance of the factory. - * - * - * @generated - */ - Mm0Factory eINSTANCE = mm0.impl.Mm0FactoryImpl.init(); - - /** - * Returns a new object of class 'Class0'. - * - * - * @return a new object of class 'Class0'. - * @generated - */ - Class0 createClass0(); - - /** - * Returns a new object of class 'Class1'. - * - * - * @return a new object of class 'Class1'. - * @generated - */ - Class1 createClass1(); - - /** - * Returns a new object of class 'Class2'. - * - * - * @return a new object of class 'Class2'. - * @generated - */ - Class2 createClass2(); - - /** - * Returns a new object of class 'Class3'. - * - * - * @return a new object of class 'Class3'. - * @generated - */ - Class3 createClass3(); - - /** - * Returns a new object of class 'Class4'. - * - * - * @return a new object of class 'Class4'. - * @generated - */ - Class4 createClass4(); - - /** - * Returns a new object of class 'Class5'. - * - * - * @return a new object of class 'Class5'. - * @generated - */ - Class5 createClass5(); - - /** - * Returns a new object of class 'Class6'. - * - * - * @return a new object of class 'Class6'. - * @generated - */ - Class6 createClass6(); - - /** - * Returns a new object of class 'Class7'. - * - * - * @return a new object of class 'Class7'. - * @generated - */ - Class7 createClass7(); - - /** - * Returns a new object of class 'Class8'. - * - * - * @return a new object of class 'Class8'. - * @generated - */ - Class8 createClass8(); - - /** - * Returns a new object of class 'Class9'. - * - * - * @return a new object of class 'Class9'. - * @generated - */ - Class9 createClass9(); - - /** - * Returns a new object of class 'Class10'. - * - * - * @return a new object of class 'Class10'. - * @generated - */ - Class10 createClass10(); - - /** - * Returns the package supported by this factory. - * - * - * @return the package supported by this factory. - * @generated - */ - Mm0Package getMm0Package(); - -} //Mm0Factory diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Mm0Package.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/Mm0Package.java deleted file mode 100644 index 45a269f4b2d5968eab7cb749dccbfdf69c5a06df..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/Mm0Package.java +++ /dev/null @@ -1,5771 +0,0 @@ -/** - */ -package mm0; - -import org.eclipse.emf.ecore.EAttribute; -import org.eclipse.emf.ecore.EClass; -import org.eclipse.emf.ecore.EPackage; -import org.eclipse.emf.ecore.EReference; - -/** - * - * The Package for the model. - * It contains accessors for the meta objects to represent - *
    - *
  • each class,
  • - *
  • each feature of each class,
  • - *
  • each enum,
  • - *
  • and each data type
  • - *
- * - * @see mm0.Mm0Factory - * @model kind="package" - * @generated - */ -public interface Mm0Package extends EPackage { - /** - * The package name. - * - * - * @generated - */ - String eNAME = "mm0"; - - /** - * The package namespace URI. - * - * - * @generated - */ - String eNS_URI = "http://mm0"; - - /** - * The package namespace name. - * - * - * @generated - */ - String eNS_PREFIX = "mm0"; - - /** - * The singleton instance of the package. - * - * - * @generated - */ - Mm0Package eINSTANCE = mm0.impl.Mm0PackageImpl.init(); - - /** - * The meta object id for the '{@link mm0.impl.Class0Impl Class0}' class. - * - * - * @see mm0.impl.Class0Impl - * @see mm0.impl.Mm0PackageImpl#getClass0() - * @generated - */ - int CLASS0 = 0; - - /** - * The feature id for the 'Att EBoolean 20' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EBOOLEAN_20 = 0; - - /** - * The feature id for the 'Att EInt 23' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EINT_23 = 1; - - /** - * The feature id for the 'Att EInt 27' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EINT_27 = 2; - - /** - * The feature id for the 'Ref Class9 41' reference. - * - * - * @generated - * @ordered - */ - int CLASS0__REF_CLASS9_41 = 3; - - /** - * The feature id for the 'Att EBoolean 49' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EBOOLEAN_49 = 4; - - /** - * The feature id for the 'Att EInt 53' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EINT_53 = 5; - - /** - * The feature id for the 'Att EInt 63' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EINT_63 = 6; - - /** - * The feature id for the 'Att EInt 66' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EINT_66 = 7; - - /** - * The feature id for the 'Att EInt 72' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EINT_72 = 8; - - /** - * The feature id for the 'Att EBoolean 90' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EBOOLEAN_90 = 9; - - /** - * The feature id for the 'Att EInt 94' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EINT_94 = 10; - - /** - * The feature id for the 'Att EInt 107' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EINT_107 = 11; - - /** - * The feature id for the 'Att EInt 108' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EINT_108 = 12; - - /** - * The feature id for the 'Att EBoolean 116' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EBOOLEAN_116 = 13; - - /** - * The feature id for the 'Att EInt 120' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EINT_120 = 14; - - /** - * The feature id for the 'Att EInt 133' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EINT_133 = 15; - - /** - * The feature id for the 'Att EInt 135' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EINT_135 = 16; - - /** - * The feature id for the 'Att EBoolean 149' attribute. - * - * - * @generated - * @ordered - */ - int CLASS0__ATT_EBOOLEAN_149 = 17; - - /** - * The feature id for the 'Ref Class5 172 m' reference. - * - * - * @generated - * @ordered - */ - int CLASS0__REF_CLASS5_172_M = 18; - - /** - * The feature id for the 'Ref Class9 180 m' reference. - * - * - * @generated - * @ordered - */ - int CLASS0__REF_CLASS9_180_M = 19; - - /** - * The number of structural features of the 'Class0' class. - * - * - * @generated - * @ordered - */ - int CLASS0_FEATURE_COUNT = 20; - - /** - * The meta object id for the '{@link mm0.impl.Class1Impl Class1}' class. - * - * - * @see mm0.impl.Class1Impl - * @see mm0.impl.Mm0PackageImpl#getClass1() - * @generated - */ - int CLASS1 = 1; - - /** - * The feature id for the 'Att EBoolean 1' attribute. - * - * - * @generated - * @ordered - */ - int CLASS1__ATT_EBOOLEAN_1 = 0; - - /** - * The feature id for the 'Att EBoolean 13' attribute. - * - * - * @generated - * @ordered - */ - int CLASS1__ATT_EBOOLEAN_13 = 1; - - /** - * The feature id for the 'Att EBoolean 46' attribute. - * - * - * @generated - * @ordered - */ - int CLASS1__ATT_EBOOLEAN_46 = 2; - - /** - * The feature id for the 'Ref Class9 54' reference. - * - * - * @generated - * @ordered - */ - int CLASS1__REF_CLASS9_54 = 3; - - /** - * The feature id for the 'Ref Class6 59' reference. - * - * - * @generated - * @ordered - */ - int CLASS1__REF_CLASS6_59 = 4; - - /** - * The feature id for the 'Ref Class10 80' reference. - * - * - * @generated - * @ordered - */ - int CLASS1__REF_CLASS10_80 = 5; - - /** - * The feature id for the 'Ref Class10 92' reference. - * - * - * @generated - * @ordered - */ - int CLASS1__REF_CLASS10_92 = 6; - - /** - * The feature id for the 'Att EBoolean 98' attribute. - * - * - * @generated - * @ordered - */ - int CLASS1__ATT_EBOOLEAN_98 = 7; - - /** - * The feature id for the 'Att EBoolean 127' attribute. - * - * - * @generated - * @ordered - */ - int CLASS1__ATT_EBOOLEAN_127 = 8; - - /** - * The feature id for the 'Att EBoolean 148' attribute. - * - * - * @generated - * @ordered - */ - int CLASS1__ATT_EBOOLEAN_148 = 9; - - /** - * The feature id for the 'Att EInt 154' attribute. - * - * - * @generated - * @ordered - */ - int CLASS1__ATT_EINT_154 = 10; - - /** - * The feature id for the 'Att EInt 175 m' attribute. - * - * - * @generated - * @ordered - */ - int CLASS1__ATT_EINT_175_M = 11; - - /** - * The number of structural features of the 'Class1' class. - * - * - * @generated - * @ordered - */ - int CLASS1_FEATURE_COUNT = 12; - - /** - * The meta object id for the '{@link mm0.impl.Class2Impl Class2}' class. - * - * - * @see mm0.impl.Class2Impl - * @see mm0.impl.Mm0PackageImpl#getClass2() - * @generated - */ - int CLASS2 = 2; - - /** - * The feature id for the 'Att EInt 12' attribute. - * - * - * @generated - * @ordered - */ - int CLASS2__ATT_EINT_12 = 0; - - /** - * The feature id for the 'Att EInt 18' attribute. - * - * - * @generated - * @ordered - */ - int CLASS2__ATT_EINT_18 = 1; - - /** - * The feature id for the 'Att EBoolean 21' attribute. - * - * - * @generated - * @ordered - */ - int CLASS2__ATT_EBOOLEAN_21 = 2; - - /** - * The feature id for the 'Att EBoolean 50' attribute. - * - * - * @generated - * @ordered - */ - int CLASS2__ATT_EBOOLEAN_50 = 3; - - /** - * The feature id for the 'Att EBoolean 76' attribute. - * - * - * @generated - * @ordered - */ - int CLASS2__ATT_EBOOLEAN_76 = 4; - - /** - * The feature id for the 'Att EInt 104' attribute. - * - * - * @generated - * @ordered - */ - int CLASS2__ATT_EINT_104 = 5; - - /** - * The feature id for the 'Att EInt 117' attribute. - * - * - * @generated - * @ordered - */ - int CLASS2__ATT_EINT_117 = 6; - - /** - * The feature id for the 'Att EInt 132' attribute. - * - * - * @generated - * @ordered - */ - int CLASS2__ATT_EINT_132 = 7; - - /** - * The feature id for the 'Att EInt 140' attribute. - * - * - * @generated - * @ordered - */ - int CLASS2__ATT_EINT_140 = 8; - - /** - * The feature id for the 'Att EBoolean 146' attribute. - * - * - * @generated - * @ordered - */ - int CLASS2__ATT_EBOOLEAN_146 = 9; - - /** - * The feature id for the 'Att EInt 161' attribute. - * - * - * @generated - * @ordered - */ - int CLASS2__ATT_EINT_161 = 10; - - /** - * The feature id for the 'Att EInt 170' attribute. - * - * - * @generated - * @ordered - */ - int CLASS2__ATT_EINT_170 = 11; - - /** - * The feature id for the 'Att EInt 185 m' attribute. - * - * - * @generated - * @ordered - */ - int CLASS2__ATT_EINT_185_M = 12; - - /** - * The number of structural features of the 'Class2' class. - * - * - * @generated - * @ordered - */ - int CLASS2_FEATURE_COUNT = 13; - - /** - * The meta object id for the '{@link mm0.impl.Class3Impl Class3}' class. - * - * - * @see mm0.impl.Class3Impl - * @see mm0.impl.Mm0PackageImpl#getClass3() - * @generated - */ - int CLASS3 = 3; - - /** - * The feature id for the 'Att EInt 10' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EINT_10 = 0; - - /** - * The feature id for the 'Ref Class9 26' reference. - * - * - * @generated - * @ordered - */ - int CLASS3__REF_CLASS9_26 = 1; - - /** - * The feature id for the 'Att EInt 30' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EINT_30 = 2; - - /** - * The feature id for the 'Att EInt 40' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EINT_40 = 3; - - /** - * The feature id for the 'Att EInt 48' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EINT_48 = 4; - - /** - * The feature id for the 'Att EInt 68' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EINT_68 = 5; - - /** - * The feature id for the 'Att EBoolean 69' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EBOOLEAN_69 = 6; - - /** - * The feature id for the 'Att EBoolean 78' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EBOOLEAN_78 = 7; - - /** - * The feature id for the 'Att EBoolean 87' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EBOOLEAN_87 = 8; - - /** - * The feature id for the 'Att EBoolean 88' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EBOOLEAN_88 = 9; - - /** - * The feature id for the 'Att EBoolean 89' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EBOOLEAN_89 = 10; - - /** - * The feature id for the 'Att EInt 101' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EINT_101 = 11; - - /** - * The feature id for the 'Att EBoolean 102' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EBOOLEAN_102 = 12; - - /** - * The feature id for the 'Ref Class0 105' reference. - * - * - * @generated - * @ordered - */ - int CLASS3__REF_CLASS0_105 = 13; - - /** - * The feature id for the 'Att EInt 109' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EINT_109 = 14; - - /** - * The feature id for the 'Att EBoolean 114' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EBOOLEAN_114 = 15; - - /** - * The feature id for the 'Ref Class1 122' reference. - * - * - * @generated - * @ordered - */ - int CLASS3__REF_CLASS1_122 = 16; - - /** - * The feature id for the 'Att EBoolean 165' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EBOOLEAN_165 = 17; - - /** - * The feature id for the 'Ref Class2 167' reference. - * - * - * @generated - * @ordered - */ - int CLASS3__REF_CLASS2_167 = 18; - - /** - * The feature id for the 'Att EInt 182 m' attribute. - * - * - * @generated - * @ordered - */ - int CLASS3__ATT_EINT_182_M = 19; - - /** - * The number of structural features of the 'Class3' class. - * - * - * @generated - * @ordered - */ - int CLASS3_FEATURE_COUNT = 20; - - /** - * The meta object id for the '{@link mm0.impl.Class4Impl Class4}' class. - * - * - * @see mm0.impl.Class4Impl - * @see mm0.impl.Mm0PackageImpl#getClass4() - * @generated - */ - int CLASS4 = 4; - - /** - * The feature id for the 'Att EBoolean 5' attribute. - * - * - * @generated - * @ordered - */ - int CLASS4__ATT_EBOOLEAN_5 = 0; - - /** - * The feature id for the 'Att EInt 6' attribute. - * - * - * @generated - * @ordered - */ - int CLASS4__ATT_EINT_6 = 1; - - /** - * The feature id for the 'Att EBoolean 22' attribute. - * - * - * @generated - * @ordered - */ - int CLASS4__ATT_EBOOLEAN_22 = 2; - - /** - * The feature id for the 'Att EInt 35' attribute. - * - * - * @generated - * @ordered - */ - int CLASS4__ATT_EINT_35 = 3; - - /** - * The feature id for the 'Att EBoolean 58' attribute. - * - * - * @generated - * @ordered - */ - int CLASS4__ATT_EBOOLEAN_58 = 4; - - /** - * The feature id for the 'Att EInt 99' attribute. - * - * - * @generated - * @ordered - */ - int CLASS4__ATT_EINT_99 = 5; - - /** - * The feature id for the 'Att EInt 113' attribute. - * - * - * @generated - * @ordered - */ - int CLASS4__ATT_EINT_113 = 6; - - /** - * The feature id for the 'Att EInt 139' attribute. - * - * - * @generated - * @ordered - */ - int CLASS4__ATT_EINT_139 = 7; - - /** - * The feature id for the 'Att EBoolean 156' attribute. - * - * - * @generated - * @ordered - */ - int CLASS4__ATT_EBOOLEAN_156 = 8; - - /** - * The feature id for the 'Att EBoolean 159' attribute. - * - * - * @generated - * @ordered - */ - int CLASS4__ATT_EBOOLEAN_159 = 9; - - /** - * The feature id for the 'Ref Class8 163' reference. - * - * - * @generated - * @ordered - */ - int CLASS4__REF_CLASS8_163 = 10; - - /** - * The feature id for the 'Att EBoolean 169' attribute. - * - * - * @generated - * @ordered - */ - int CLASS4__ATT_EBOOLEAN_169 = 11; - - /** - * The feature id for the 'Att EInt 174 m' attribute. - * - * - * @generated - * @ordered - */ - int CLASS4__ATT_EINT_174_M = 12; - - /** - * The feature id for the 'Ref Class10 179 m' reference. - * - * - * @generated - * @ordered - */ - int CLASS4__REF_CLASS10_179_M = 13; - - /** - * The number of structural features of the 'Class4' class. - * - * - * @generated - * @ordered - */ - int CLASS4_FEATURE_COUNT = 14; - - /** - * The meta object id for the '{@link mm0.impl.Class5Impl Class5}' class. - * - * - * @see mm0.impl.Class5Impl - * @see mm0.impl.Mm0PackageImpl#getClass5() - * @generated - */ - int CLASS5 = 5; - - /** - * The feature id for the 'Att EBoolean 4' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EBOOLEAN_4 = 0; - - /** - * The feature id for the 'Att EBoolean 7' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EBOOLEAN_7 = 1; - - /** - * The feature id for the 'Att EBoolean 8' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EBOOLEAN_8 = 2; - - /** - * The feature id for the 'Att EInt 16' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EINT_16 = 3; - - /** - * The feature id for the 'Att EInt 19' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EINT_19 = 4; - - /** - * The feature id for the 'Att EBoolean 28' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EBOOLEAN_28 = 5; - - /** - * The feature id for the 'Att EInt 31' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EINT_31 = 6; - - /** - * The feature id for the 'Ref Class8 36' reference. - * - * - * @generated - * @ordered - */ - int CLASS5__REF_CLASS8_36 = 7; - - /** - * The feature id for the 'Att EBoolean 39' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EBOOLEAN_39 = 8; - - /** - * The feature id for the 'Ref Class0 55' reference. - * - * - * @generated - * @ordered - */ - int CLASS5__REF_CLASS0_55 = 9; - - /** - * The feature id for the 'Att EBoolean 62' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EBOOLEAN_62 = 10; - - /** - * The feature id for the 'Att EBoolean 65' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EBOOLEAN_65 = 11; - - /** - * The feature id for the 'Att EInt 67' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EINT_67 = 12; - - /** - * The feature id for the 'Att EBoolean 100' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EBOOLEAN_100 = 13; - - /** - * The feature id for the 'Att EBoolean 138' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EBOOLEAN_138 = 14; - - /** - * The feature id for the 'Att EInt 142' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EINT_142 = 15; - - /** - * The feature id for the 'Att EInt 150' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EINT_150 = 16; - - /** - * The feature id for the 'Att EBoolean 151' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EBOOLEAN_151 = 17; - - /** - * The feature id for the 'Att EInt 155' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EINT_155 = 18; - - /** - * The feature id for the 'Att EInt 171' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EINT_171 = 19; - - /** - * The feature id for the 'Att EBoolean 181 m' attribute. - * - * - * @generated - * @ordered - */ - int CLASS5__ATT_EBOOLEAN_181_M = 20; - - /** - * The number of structural features of the 'Class5' class. - * - * - * @generated - * @ordered - */ - int CLASS5_FEATURE_COUNT = 21; - - /** - * The meta object id for the '{@link mm0.impl.Class6Impl Class6}' class. - * - * - * @see mm0.impl.Class6Impl - * @see mm0.impl.Mm0PackageImpl#getClass6() - * @generated - */ - int CLASS6 = 6; - - /** - * The feature id for the 'Att EBoolean 17' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EBOOLEAN_17 = 0; - - /** - * The feature id for the 'Ref Class1 38' reference. - * - * - * @generated - * @ordered - */ - int CLASS6__REF_CLASS1_38 = 1; - - /** - * The feature id for the 'Att EBoolean 42' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EBOOLEAN_42 = 2; - - /** - * The feature id for the 'Att EBoolean 52' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EBOOLEAN_52 = 3; - - /** - * The feature id for the 'Ref Class4 57' reference. - * - * - * @generated - * @ordered - */ - int CLASS6__REF_CLASS4_57 = 4; - - /** - * The feature id for the 'Att EBoolean 71' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EBOOLEAN_71 = 5; - - /** - * The feature id for the 'Att EBoolean 77' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EBOOLEAN_77 = 6; - - /** - * The feature id for the 'Att EBoolean 83' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EBOOLEAN_83 = 7; - - /** - * The feature id for the 'Att EBoolean 85' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EBOOLEAN_85 = 8; - - /** - * The feature id for the 'Ref Class1 110' reference. - * - * - * @generated - * @ordered - */ - int CLASS6__REF_CLASS1_110 = 9; - - /** - * The feature id for the 'Att EBoolean 111' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EBOOLEAN_111 = 10; - - /** - * The feature id for the 'Att EInt 129' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EINT_129 = 11; - - /** - * The feature id for the 'Att EBoolean 131' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EBOOLEAN_131 = 12; - - /** - * The feature id for the 'Att EBoolean 141' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EBOOLEAN_141 = 13; - - /** - * The feature id for the 'Att EBoolean 147' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EBOOLEAN_147 = 14; - - /** - * The feature id for the 'Att EInt 158' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EINT_158 = 15; - - /** - * The feature id for the 'Att EBoolean 160' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EBOOLEAN_160 = 16; - - /** - * The feature id for the 'Att EInt 162' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EINT_162 = 17; - - /** - * The feature id for the 'Att EInt 176 m' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EINT_176_M = 18; - - /** - * The feature id for the 'Att EBoolean 184 m' attribute. - * - * - * @generated - * @ordered - */ - int CLASS6__ATT_EBOOLEAN_184_M = 19; - - /** - * The number of structural features of the 'Class6' class. - * - * - * @generated - * @ordered - */ - int CLASS6_FEATURE_COUNT = 20; - - /** - * The meta object id for the '{@link mm0.impl.Class7Impl Class7}' class. - * - * - * @see mm0.impl.Class7Impl - * @see mm0.impl.Mm0PackageImpl#getClass7() - * @generated - */ - int CLASS7 = 7; - - /** - * The feature id for the 'Att EBoolean 37' attribute. - * - * - * @generated - * @ordered - */ - int CLASS7__ATT_EBOOLEAN_37 = 0; - - /** - * The feature id for the 'Att EBoolean 47' attribute. - * - * - * @generated - * @ordered - */ - int CLASS7__ATT_EBOOLEAN_47 = 1; - - /** - * The feature id for the 'Att EInt 56' attribute. - * - * - * @generated - * @ordered - */ - int CLASS7__ATT_EINT_56 = 2; - - /** - * The feature id for the 'Att EBoolean 82' attribute. - * - * - * @generated - * @ordered - */ - int CLASS7__ATT_EBOOLEAN_82 = 3; - - /** - * The feature id for the 'Att EInt 91' attribute. - * - * - * @generated - * @ordered - */ - int CLASS7__ATT_EINT_91 = 4; - - /** - * The feature id for the 'Att EInt 95' attribute. - * - * - * @generated - * @ordered - */ - int CLASS7__ATT_EINT_95 = 5; - - /** - * The feature id for the 'Att EInt 96' attribute. - * - * - * @generated - * @ordered - */ - int CLASS7__ATT_EINT_96 = 6; - - /** - * The feature id for the 'Att EInt 134' attribute. - * - * - * @generated - * @ordered - */ - int CLASS7__ATT_EINT_134 = 7; - - /** - * The feature id for the 'Att EInt 136' attribute. - * - * - * @generated - * @ordered - */ - int CLASS7__ATT_EINT_136 = 8; - - /** - * The feature id for the 'Ref Class7 137' reference. - * - * - * @generated - * @ordered - */ - int CLASS7__REF_CLASS7_137 = 9; - - /** - * The feature id for the 'Att EInt 153' attribute. - * - * - * @generated - * @ordered - */ - int CLASS7__ATT_EINT_153 = 10; - - /** - * The feature id for the 'Att EInt 157' attribute. - * - * - * @generated - * @ordered - */ - int CLASS7__ATT_EINT_157 = 11; - - /** - * The feature id for the 'Att EBoolean 177 m' attribute. - * - * - * @generated - * @ordered - */ - int CLASS7__ATT_EBOOLEAN_177_M = 12; - - /** - * The number of structural features of the 'Class7' class. - * - * - * @generated - * @ordered - */ - int CLASS7_FEATURE_COUNT = 13; - - /** - * The meta object id for the '{@link mm0.impl.Class8Impl Class8}' class. - * - * - * @see mm0.impl.Class8Impl - * @see mm0.impl.Mm0PackageImpl#getClass8() - * @generated - */ - int CLASS8 = 8; - - /** - * The feature id for the 'Att EInt 9' attribute. - * - * - * @generated - * @ordered - */ - int CLASS8__ATT_EINT_9 = 0; - - /** - * The feature id for the 'Att EInt 14' attribute. - * - * - * @generated - * @ordered - */ - int CLASS8__ATT_EINT_14 = 1; - - /** - * The feature id for the 'Att EInt 25' attribute. - * - * - * @generated - * @ordered - */ - int CLASS8__ATT_EINT_25 = 2; - - /** - * The feature id for the 'Att EInt 33' attribute. - * - * - * @generated - * @ordered - */ - int CLASS8__ATT_EINT_33 = 3; - - /** - * The feature id for the 'Att EBoolean 34' attribute. - * - * - * @generated - * @ordered - */ - int CLASS8__ATT_EBOOLEAN_34 = 4; - - /** - * The feature id for the 'Att EBoolean 43' attribute. - * - * - * @generated - * @ordered - */ - int CLASS8__ATT_EBOOLEAN_43 = 5; - - /** - * The feature id for the 'Att EBoolean 51' attribute. - * - * - * @generated - * @ordered - */ - int CLASS8__ATT_EBOOLEAN_51 = 6; - - /** - * The feature id for the 'Att EBoolean 64' attribute. - * - * - * @generated - * @ordered - */ - int CLASS8__ATT_EBOOLEAN_64 = 7; - - /** - * The feature id for the 'Att EBoolean 75' attribute. - * - * - * @generated - * @ordered - */ - int CLASS8__ATT_EBOOLEAN_75 = 8; - - /** - * The feature id for the 'Att EInt 86' attribute. - * - * - * @generated - * @ordered - */ - int CLASS8__ATT_EINT_86 = 9; - - /** - * The feature id for the 'Ref Class9 97' reference. - * - * - * @generated - * @ordered - */ - int CLASS8__REF_CLASS9_97 = 10; - - /** - * The feature id for the 'Ref Class7 115' reference. - * - * - * @generated - * @ordered - */ - int CLASS8__REF_CLASS7_115 = 11; - - /** - * The feature id for the 'Att EBoolean 126' attribute. - * - * - * @generated - * @ordered - */ - int CLASS8__ATT_EBOOLEAN_126 = 12; - - /** - * The feature id for the 'Att EBoolean 145' attribute. - * - * - * @generated - * @ordered - */ - int CLASS8__ATT_EBOOLEAN_145 = 13; - - /** - * The feature id for the 'Att EInt 164' attribute. - * - * - * @generated - * @ordered - */ - int CLASS8__ATT_EINT_164 = 14; - - /** - * The number of structural features of the 'Class8' class. - * - * - * @generated - * @ordered - */ - int CLASS8_FEATURE_COUNT = 15; - - /** - * The meta object id for the '{@link mm0.impl.Class9Impl Class9}' class. - * - * - * @see mm0.impl.Class9Impl - * @see mm0.impl.Mm0PackageImpl#getClass9() - * @generated - */ - int CLASS9 = 9; - - /** - * The feature id for the 'Att EBoolean 3' attribute. - * - * - * @generated - * @ordered - */ - int CLASS9__ATT_EBOOLEAN_3 = 0; - - /** - * The feature id for the 'Att EInt 24' attribute. - * - * - * @generated - * @ordered - */ - int CLASS9__ATT_EINT_24 = 1; - - /** - * The feature id for the 'Att EInt 29' attribute. - * - * - * @generated - * @ordered - */ - int CLASS9__ATT_EINT_29 = 2; - - /** - * The feature id for the 'Ref Class8 45' reference. - * - * - * @generated - * @ordered - */ - int CLASS9__REF_CLASS8_45 = 3; - - /** - * The feature id for the 'Ref Class4 61' reference. - * - * - * @generated - * @ordered - */ - int CLASS9__REF_CLASS4_61 = 4; - - /** - * The feature id for the 'Att EBoolean 70' attribute. - * - * - * @generated - * @ordered - */ - int CLASS9__ATT_EBOOLEAN_70 = 5; - - /** - * The feature id for the 'Att EInt 93' attribute. - * - * - * @generated - * @ordered - */ - int CLASS9__ATT_EINT_93 = 6; - - /** - * The feature id for the 'Att EBoolean 103' attribute. - * - * - * @generated - * @ordered - */ - int CLASS9__ATT_EBOOLEAN_103 = 7; - - /** - * The feature id for the 'Att EInt 106' attribute. - * - * - * @generated - * @ordered - */ - int CLASS9__ATT_EINT_106 = 8; - - /** - * The feature id for the 'Att EInt 130' attribute. - * - * - * @generated - * @ordered - */ - int CLASS9__ATT_EINT_130 = 9; - - /** - * The feature id for the 'Ref Class8 143' reference. - * - * - * @generated - * @ordered - */ - int CLASS9__REF_CLASS8_143 = 10; - - /** - * The feature id for the 'Att EBoolean 166' attribute. - * - * - * @generated - * @ordered - */ - int CLASS9__ATT_EBOOLEAN_166 = 11; - - /** - * The feature id for the 'Att EBoolean 168' attribute. - * - * - * @generated - * @ordered - */ - int CLASS9__ATT_EBOOLEAN_168 = 12; - - /** - * The feature id for the 'Att EBoolean 178 m' attribute. - * - * - * @generated - * @ordered - */ - int CLASS9__ATT_EBOOLEAN_178_M = 13; - - /** - * The number of structural features of the 'Class9' class. - * - * - * @generated - * @ordered - */ - int CLASS9_FEATURE_COUNT = 14; - - /** - * The meta object id for the '{@link mm0.impl.Class10Impl Class10}' class. - * - * - * @see mm0.impl.Class10Impl - * @see mm0.impl.Mm0PackageImpl#getClass10() - * @generated - */ - int CLASS10 = 10; - - /** - * The feature id for the 'Ref Class3 2' reference. - * - * - * @generated - * @ordered - */ - int CLASS10__REF_CLASS3_2 = 0; - - /** - * The feature id for the 'Att EInt 11' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EINT_11 = 1; - - /** - * The feature id for the 'Att EBoolean 15' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EBOOLEAN_15 = 2; - - /** - * The feature id for the 'Att EInt 32' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EINT_32 = 3; - - /** - * The feature id for the 'Att EInt 44' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EINT_44 = 4; - - /** - * The feature id for the 'Att EBoolean 60' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EBOOLEAN_60 = 5; - - /** - * The feature id for the 'Att EInt 73' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EINT_73 = 6; - - /** - * The feature id for the 'Att EBoolean 74' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EBOOLEAN_74 = 7; - - /** - * The feature id for the 'Att EBoolean 79' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EBOOLEAN_79 = 8; - - /** - * The feature id for the 'Att EInt 81' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EINT_81 = 9; - - /** - * The feature id for the 'Att EInt 84' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EINT_84 = 10; - - /** - * The feature id for the 'Ref Class10 112' reference. - * - * - * @generated - * @ordered - */ - int CLASS10__REF_CLASS10_112 = 11; - - /** - * The feature id for the 'Att EBoolean 118' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EBOOLEAN_118 = 12; - - /** - * The feature id for the 'Ref Class9 119' reference. - * - * - * @generated - * @ordered - */ - int CLASS10__REF_CLASS9_119 = 13; - - /** - * The feature id for the 'Att EInt 121' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EINT_121 = 14; - - /** - * The feature id for the 'Att EBoolean 123' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EBOOLEAN_123 = 15; - - /** - * The feature id for the 'Ref Class4 124' reference. - * - * - * @generated - * @ordered - */ - int CLASS10__REF_CLASS4_124 = 16; - - /** - * The feature id for the 'Att EInt 125' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EINT_125 = 17; - - /** - * The feature id for the 'Att EBoolean 128' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EBOOLEAN_128 = 18; - - /** - * The feature id for the 'Att EInt 144' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EINT_144 = 19; - - /** - * The feature id for the 'Att EBoolean 152' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EBOOLEAN_152 = 20; - - /** - * The feature id for the 'Att EInt 173 m' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EINT_173_M = 21; - - /** - * The feature id for the 'Att EInt 183 m' attribute. - * - * - * @generated - * @ordered - */ - int CLASS10__ATT_EINT_183_M = 22; - - /** - * The number of structural features of the 'Class10' class. - * - * - * @generated - * @ordered - */ - int CLASS10_FEATURE_COUNT = 23; - - /** - * Returns the meta object for class '{@link mm0.Class0 Class0}'. - * - * - * @return the meta object for class 'Class0'. - * @see mm0.Class0 - * @generated - */ - EClass getClass0(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#isAttEBoolean_20 Att EBoolean 20}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 20'. - * @see mm0.Class0#isAttEBoolean_20() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEBoolean_20(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#getAttEInt_23 Att EInt 23}'. - * - * - * @return the meta object for the attribute 'Att EInt 23'. - * @see mm0.Class0#getAttEInt_23() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEInt_23(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#getAttEInt_27 Att EInt 27}'. - * - * - * @return the meta object for the attribute 'Att EInt 27'. - * @see mm0.Class0#getAttEInt_27() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEInt_27(); - - /** - * Returns the meta object for the reference '{@link mm0.Class0#getRefClass9_41 Ref Class9 41}'. - * - * - * @return the meta object for the reference 'Ref Class9 41'. - * @see mm0.Class0#getRefClass9_41() - * @see #getClass0() - * @generated - */ - EReference getClass0_RefClass9_41(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#isAttEBoolean_49 Att EBoolean 49}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 49'. - * @see mm0.Class0#isAttEBoolean_49() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEBoolean_49(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#getAttEInt_53 Att EInt 53}'. - * - * - * @return the meta object for the attribute 'Att EInt 53'. - * @see mm0.Class0#getAttEInt_53() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEInt_53(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#getAttEInt_63 Att EInt 63}'. - * - * - * @return the meta object for the attribute 'Att EInt 63'. - * @see mm0.Class0#getAttEInt_63() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEInt_63(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#getAttEInt_66 Att EInt 66}'. - * - * - * @return the meta object for the attribute 'Att EInt 66'. - * @see mm0.Class0#getAttEInt_66() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEInt_66(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#getAttEInt_72 Att EInt 72}'. - * - * - * @return the meta object for the attribute 'Att EInt 72'. - * @see mm0.Class0#getAttEInt_72() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEInt_72(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#isAttEBoolean_90 Att EBoolean 90}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 90'. - * @see mm0.Class0#isAttEBoolean_90() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEBoolean_90(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#getAttEInt_94 Att EInt 94}'. - * - * - * @return the meta object for the attribute 'Att EInt 94'. - * @see mm0.Class0#getAttEInt_94() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEInt_94(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#getAttEInt_107 Att EInt 107}'. - * - * - * @return the meta object for the attribute 'Att EInt 107'. - * @see mm0.Class0#getAttEInt_107() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEInt_107(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#getAttEInt_108 Att EInt 108}'. - * - * - * @return the meta object for the attribute 'Att EInt 108'. - * @see mm0.Class0#getAttEInt_108() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEInt_108(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#isAttEBoolean_116 Att EBoolean 116}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 116'. - * @see mm0.Class0#isAttEBoolean_116() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEBoolean_116(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#getAttEInt_120 Att EInt 120}'. - * - * - * @return the meta object for the attribute 'Att EInt 120'. - * @see mm0.Class0#getAttEInt_120() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEInt_120(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#getAttEInt_133 Att EInt 133}'. - * - * - * @return the meta object for the attribute 'Att EInt 133'. - * @see mm0.Class0#getAttEInt_133() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEInt_133(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#getAttEInt_135 Att EInt 135}'. - * - * - * @return the meta object for the attribute 'Att EInt 135'. - * @see mm0.Class0#getAttEInt_135() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEInt_135(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class0#isAttEBoolean_149 Att EBoolean 149}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 149'. - * @see mm0.Class0#isAttEBoolean_149() - * @see #getClass0() - * @generated - */ - EAttribute getClass0_AttEBoolean_149(); - - /** - * Returns the meta object for the reference '{@link mm0.Class0#getRefClass5_172_m Ref Class5 172 m}'. - * - * - * @return the meta object for the reference 'Ref Class5 172 m'. - * @see mm0.Class0#getRefClass5_172_m() - * @see #getClass0() - * @generated - */ - EReference getClass0_RefClass5_172_m(); - - /** - * Returns the meta object for the reference '{@link mm0.Class0#getRefClass9_180_m Ref Class9 180 m}'. - * - * - * @return the meta object for the reference 'Ref Class9 180 m'. - * @see mm0.Class0#getRefClass9_180_m() - * @see #getClass0() - * @generated - */ - EReference getClass0_RefClass9_180_m(); - - /** - * Returns the meta object for class '{@link mm0.Class1 Class1}'. - * - * - * @return the meta object for class 'Class1'. - * @see mm0.Class1 - * @generated - */ - EClass getClass1(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class1#isAttEBoolean_1 Att EBoolean 1}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 1'. - * @see mm0.Class1#isAttEBoolean_1() - * @see #getClass1() - * @generated - */ - EAttribute getClass1_AttEBoolean_1(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class1#isAttEBoolean_13 Att EBoolean 13}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 13'. - * @see mm0.Class1#isAttEBoolean_13() - * @see #getClass1() - * @generated - */ - EAttribute getClass1_AttEBoolean_13(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class1#isAttEBoolean_46 Att EBoolean 46}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 46'. - * @see mm0.Class1#isAttEBoolean_46() - * @see #getClass1() - * @generated - */ - EAttribute getClass1_AttEBoolean_46(); - - /** - * Returns the meta object for the reference '{@link mm0.Class1#getRefClass9_54 Ref Class9 54}'. - * - * - * @return the meta object for the reference 'Ref Class9 54'. - * @see mm0.Class1#getRefClass9_54() - * @see #getClass1() - * @generated - */ - EReference getClass1_RefClass9_54(); - - /** - * Returns the meta object for the reference '{@link mm0.Class1#getRefClass6_59 Ref Class6 59}'. - * - * - * @return the meta object for the reference 'Ref Class6 59'. - * @see mm0.Class1#getRefClass6_59() - * @see #getClass1() - * @generated - */ - EReference getClass1_RefClass6_59(); - - /** - * Returns the meta object for the reference '{@link mm0.Class1#getRefClass10_80 Ref Class10 80}'. - * - * - * @return the meta object for the reference 'Ref Class10 80'. - * @see mm0.Class1#getRefClass10_80() - * @see #getClass1() - * @generated - */ - EReference getClass1_RefClass10_80(); - - /** - * Returns the meta object for the reference '{@link mm0.Class1#getRefClass10_92 Ref Class10 92}'. - * - * - * @return the meta object for the reference 'Ref Class10 92'. - * @see mm0.Class1#getRefClass10_92() - * @see #getClass1() - * @generated - */ - EReference getClass1_RefClass10_92(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class1#isAttEBoolean_98 Att EBoolean 98}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 98'. - * @see mm0.Class1#isAttEBoolean_98() - * @see #getClass1() - * @generated - */ - EAttribute getClass1_AttEBoolean_98(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class1#isAttEBoolean_127 Att EBoolean 127}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 127'. - * @see mm0.Class1#isAttEBoolean_127() - * @see #getClass1() - * @generated - */ - EAttribute getClass1_AttEBoolean_127(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class1#isAttEBoolean_148 Att EBoolean 148}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 148'. - * @see mm0.Class1#isAttEBoolean_148() - * @see #getClass1() - * @generated - */ - EAttribute getClass1_AttEBoolean_148(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class1#getAttEInt_154 Att EInt 154}'. - * - * - * @return the meta object for the attribute 'Att EInt 154'. - * @see mm0.Class1#getAttEInt_154() - * @see #getClass1() - * @generated - */ - EAttribute getClass1_AttEInt_154(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class1#getAttEInt_175_m Att EInt 175 m}'. - * - * - * @return the meta object for the attribute 'Att EInt 175 m'. - * @see mm0.Class1#getAttEInt_175_m() - * @see #getClass1() - * @generated - */ - EAttribute getClass1_AttEInt_175_m(); - - /** - * Returns the meta object for class '{@link mm0.Class2 Class2}'. - * - * - * @return the meta object for class 'Class2'. - * @see mm0.Class2 - * @generated - */ - EClass getClass2(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class2#getAttEInt_12 Att EInt 12}'. - * - * - * @return the meta object for the attribute 'Att EInt 12'. - * @see mm0.Class2#getAttEInt_12() - * @see #getClass2() - * @generated - */ - EAttribute getClass2_AttEInt_12(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class2#getAttEInt_18 Att EInt 18}'. - * - * - * @return the meta object for the attribute 'Att EInt 18'. - * @see mm0.Class2#getAttEInt_18() - * @see #getClass2() - * @generated - */ - EAttribute getClass2_AttEInt_18(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class2#isAttEBoolean_21 Att EBoolean 21}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 21'. - * @see mm0.Class2#isAttEBoolean_21() - * @see #getClass2() - * @generated - */ - EAttribute getClass2_AttEBoolean_21(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class2#isAttEBoolean_50 Att EBoolean 50}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 50'. - * @see mm0.Class2#isAttEBoolean_50() - * @see #getClass2() - * @generated - */ - EAttribute getClass2_AttEBoolean_50(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class2#isAttEBoolean_76 Att EBoolean 76}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 76'. - * @see mm0.Class2#isAttEBoolean_76() - * @see #getClass2() - * @generated - */ - EAttribute getClass2_AttEBoolean_76(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class2#getAttEInt_104 Att EInt 104}'. - * - * - * @return the meta object for the attribute 'Att EInt 104'. - * @see mm0.Class2#getAttEInt_104() - * @see #getClass2() - * @generated - */ - EAttribute getClass2_AttEInt_104(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class2#getAttEInt_117 Att EInt 117}'. - * - * - * @return the meta object for the attribute 'Att EInt 117'. - * @see mm0.Class2#getAttEInt_117() - * @see #getClass2() - * @generated - */ - EAttribute getClass2_AttEInt_117(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class2#getAttEInt_132 Att EInt 132}'. - * - * - * @return the meta object for the attribute 'Att EInt 132'. - * @see mm0.Class2#getAttEInt_132() - * @see #getClass2() - * @generated - */ - EAttribute getClass2_AttEInt_132(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class2#getAttEInt_140 Att EInt 140}'. - * - * - * @return the meta object for the attribute 'Att EInt 140'. - * @see mm0.Class2#getAttEInt_140() - * @see #getClass2() - * @generated - */ - EAttribute getClass2_AttEInt_140(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class2#isAttEBoolean_146 Att EBoolean 146}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 146'. - * @see mm0.Class2#isAttEBoolean_146() - * @see #getClass2() - * @generated - */ - EAttribute getClass2_AttEBoolean_146(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class2#getAttEInt_161 Att EInt 161}'. - * - * - * @return the meta object for the attribute 'Att EInt 161'. - * @see mm0.Class2#getAttEInt_161() - * @see #getClass2() - * @generated - */ - EAttribute getClass2_AttEInt_161(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class2#getAttEInt_170 Att EInt 170}'. - * - * - * @return the meta object for the attribute 'Att EInt 170'. - * @see mm0.Class2#getAttEInt_170() - * @see #getClass2() - * @generated - */ - EAttribute getClass2_AttEInt_170(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class2#getAttEInt_185_m Att EInt 185 m}'. - * - * - * @return the meta object for the attribute 'Att EInt 185 m'. - * @see mm0.Class2#getAttEInt_185_m() - * @see #getClass2() - * @generated - */ - EAttribute getClass2_AttEInt_185_m(); - - /** - * Returns the meta object for class '{@link mm0.Class3 Class3}'. - * - * - * @return the meta object for class 'Class3'. - * @see mm0.Class3 - * @generated - */ - EClass getClass3(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#getAttEInt_10 Att EInt 10}'. - * - * - * @return the meta object for the attribute 'Att EInt 10'. - * @see mm0.Class3#getAttEInt_10() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEInt_10(); - - /** - * Returns the meta object for the reference '{@link mm0.Class3#getRefClass9_26 Ref Class9 26}'. - * - * - * @return the meta object for the reference 'Ref Class9 26'. - * @see mm0.Class3#getRefClass9_26() - * @see #getClass3() - * @generated - */ - EReference getClass3_RefClass9_26(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#getAttEInt_30 Att EInt 30}'. - * - * - * @return the meta object for the attribute 'Att EInt 30'. - * @see mm0.Class3#getAttEInt_30() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEInt_30(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#getAttEInt_40 Att EInt 40}'. - * - * - * @return the meta object for the attribute 'Att EInt 40'. - * @see mm0.Class3#getAttEInt_40() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEInt_40(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#getAttEInt_48 Att EInt 48}'. - * - * - * @return the meta object for the attribute 'Att EInt 48'. - * @see mm0.Class3#getAttEInt_48() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEInt_48(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#getAttEInt_68 Att EInt 68}'. - * - * - * @return the meta object for the attribute 'Att EInt 68'. - * @see mm0.Class3#getAttEInt_68() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEInt_68(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#isAttEBoolean_69 Att EBoolean 69}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 69'. - * @see mm0.Class3#isAttEBoolean_69() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEBoolean_69(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#isAttEBoolean_78 Att EBoolean 78}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 78'. - * @see mm0.Class3#isAttEBoolean_78() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEBoolean_78(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#isAttEBoolean_87 Att EBoolean 87}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 87'. - * @see mm0.Class3#isAttEBoolean_87() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEBoolean_87(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#isAttEBoolean_88 Att EBoolean 88}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 88'. - * @see mm0.Class3#isAttEBoolean_88() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEBoolean_88(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#isAttEBoolean_89 Att EBoolean 89}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 89'. - * @see mm0.Class3#isAttEBoolean_89() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEBoolean_89(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#getAttEInt_101 Att EInt 101}'. - * - * - * @return the meta object for the attribute 'Att EInt 101'. - * @see mm0.Class3#getAttEInt_101() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEInt_101(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#isAttEBoolean_102 Att EBoolean 102}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 102'. - * @see mm0.Class3#isAttEBoolean_102() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEBoolean_102(); - - /** - * Returns the meta object for the reference '{@link mm0.Class3#getRefClass0_105 Ref Class0 105}'. - * - * - * @return the meta object for the reference 'Ref Class0 105'. - * @see mm0.Class3#getRefClass0_105() - * @see #getClass3() - * @generated - */ - EReference getClass3_RefClass0_105(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#getAttEInt_109 Att EInt 109}'. - * - * - * @return the meta object for the attribute 'Att EInt 109'. - * @see mm0.Class3#getAttEInt_109() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEInt_109(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#isAttEBoolean_114 Att EBoolean 114}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 114'. - * @see mm0.Class3#isAttEBoolean_114() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEBoolean_114(); - - /** - * Returns the meta object for the reference '{@link mm0.Class3#getRefClass1_122 Ref Class1 122}'. - * - * - * @return the meta object for the reference 'Ref Class1 122'. - * @see mm0.Class3#getRefClass1_122() - * @see #getClass3() - * @generated - */ - EReference getClass3_RefClass1_122(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#isAttEBoolean_165 Att EBoolean 165}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 165'. - * @see mm0.Class3#isAttEBoolean_165() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEBoolean_165(); - - /** - * Returns the meta object for the reference '{@link mm0.Class3#getRefClass2_167 Ref Class2 167}'. - * - * - * @return the meta object for the reference 'Ref Class2 167'. - * @see mm0.Class3#getRefClass2_167() - * @see #getClass3() - * @generated - */ - EReference getClass3_RefClass2_167(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class3#getAttEInt_182_m Att EInt 182 m}'. - * - * - * @return the meta object for the attribute 'Att EInt 182 m'. - * @see mm0.Class3#getAttEInt_182_m() - * @see #getClass3() - * @generated - */ - EAttribute getClass3_AttEInt_182_m(); - - /** - * Returns the meta object for class '{@link mm0.Class4 Class4}'. - * - * - * @return the meta object for class 'Class4'. - * @see mm0.Class4 - * @generated - */ - EClass getClass4(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class4#isAttEBoolean_5 Att EBoolean 5}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 5'. - * @see mm0.Class4#isAttEBoolean_5() - * @see #getClass4() - * @generated - */ - EAttribute getClass4_AttEBoolean_5(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class4#getAttEInt_6 Att EInt 6}'. - * - * - * @return the meta object for the attribute 'Att EInt 6'. - * @see mm0.Class4#getAttEInt_6() - * @see #getClass4() - * @generated - */ - EAttribute getClass4_AttEInt_6(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class4#isAttEBoolean_22 Att EBoolean 22}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 22'. - * @see mm0.Class4#isAttEBoolean_22() - * @see #getClass4() - * @generated - */ - EAttribute getClass4_AttEBoolean_22(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class4#getAttEInt_35 Att EInt 35}'. - * - * - * @return the meta object for the attribute 'Att EInt 35'. - * @see mm0.Class4#getAttEInt_35() - * @see #getClass4() - * @generated - */ - EAttribute getClass4_AttEInt_35(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class4#isAttEBoolean_58 Att EBoolean 58}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 58'. - * @see mm0.Class4#isAttEBoolean_58() - * @see #getClass4() - * @generated - */ - EAttribute getClass4_AttEBoolean_58(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class4#getAttEInt_99 Att EInt 99}'. - * - * - * @return the meta object for the attribute 'Att EInt 99'. - * @see mm0.Class4#getAttEInt_99() - * @see #getClass4() - * @generated - */ - EAttribute getClass4_AttEInt_99(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class4#getAttEInt_113 Att EInt 113}'. - * - * - * @return the meta object for the attribute 'Att EInt 113'. - * @see mm0.Class4#getAttEInt_113() - * @see #getClass4() - * @generated - */ - EAttribute getClass4_AttEInt_113(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class4#getAttEInt_139 Att EInt 139}'. - * - * - * @return the meta object for the attribute 'Att EInt 139'. - * @see mm0.Class4#getAttEInt_139() - * @see #getClass4() - * @generated - */ - EAttribute getClass4_AttEInt_139(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class4#isAttEBoolean_156 Att EBoolean 156}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 156'. - * @see mm0.Class4#isAttEBoolean_156() - * @see #getClass4() - * @generated - */ - EAttribute getClass4_AttEBoolean_156(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class4#isAttEBoolean_159 Att EBoolean 159}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 159'. - * @see mm0.Class4#isAttEBoolean_159() - * @see #getClass4() - * @generated - */ - EAttribute getClass4_AttEBoolean_159(); - - /** - * Returns the meta object for the reference '{@link mm0.Class4#getRefClass8_163 Ref Class8 163}'. - * - * - * @return the meta object for the reference 'Ref Class8 163'. - * @see mm0.Class4#getRefClass8_163() - * @see #getClass4() - * @generated - */ - EReference getClass4_RefClass8_163(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class4#isAttEBoolean_169 Att EBoolean 169}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 169'. - * @see mm0.Class4#isAttEBoolean_169() - * @see #getClass4() - * @generated - */ - EAttribute getClass4_AttEBoolean_169(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class4#getAttEInt_174_m Att EInt 174 m}'. - * - * - * @return the meta object for the attribute 'Att EInt 174 m'. - * @see mm0.Class4#getAttEInt_174_m() - * @see #getClass4() - * @generated - */ - EAttribute getClass4_AttEInt_174_m(); - - /** - * Returns the meta object for the reference '{@link mm0.Class4#getRefClass10_179_m Ref Class10 179 m}'. - * - * - * @return the meta object for the reference 'Ref Class10 179 m'. - * @see mm0.Class4#getRefClass10_179_m() - * @see #getClass4() - * @generated - */ - EReference getClass4_RefClass10_179_m(); - - /** - * Returns the meta object for class '{@link mm0.Class5 Class5}'. - * - * - * @return the meta object for class 'Class5'. - * @see mm0.Class5 - * @generated - */ - EClass getClass5(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#isAttEBoolean_4 Att EBoolean 4}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 4'. - * @see mm0.Class5#isAttEBoolean_4() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEBoolean_4(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#isAttEBoolean_7 Att EBoolean 7}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 7'. - * @see mm0.Class5#isAttEBoolean_7() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEBoolean_7(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#isAttEBoolean_8 Att EBoolean 8}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 8'. - * @see mm0.Class5#isAttEBoolean_8() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEBoolean_8(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#getAttEInt_16 Att EInt 16}'. - * - * - * @return the meta object for the attribute 'Att EInt 16'. - * @see mm0.Class5#getAttEInt_16() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEInt_16(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#getAttEInt_19 Att EInt 19}'. - * - * - * @return the meta object for the attribute 'Att EInt 19'. - * @see mm0.Class5#getAttEInt_19() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEInt_19(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#isAttEBoolean_28 Att EBoolean 28}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 28'. - * @see mm0.Class5#isAttEBoolean_28() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEBoolean_28(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#getAttEInt_31 Att EInt 31}'. - * - * - * @return the meta object for the attribute 'Att EInt 31'. - * @see mm0.Class5#getAttEInt_31() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEInt_31(); - - /** - * Returns the meta object for the reference '{@link mm0.Class5#getRefClass8_36 Ref Class8 36}'. - * - * - * @return the meta object for the reference 'Ref Class8 36'. - * @see mm0.Class5#getRefClass8_36() - * @see #getClass5() - * @generated - */ - EReference getClass5_RefClass8_36(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#isAttEBoolean_39 Att EBoolean 39}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 39'. - * @see mm0.Class5#isAttEBoolean_39() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEBoolean_39(); - - /** - * Returns the meta object for the reference '{@link mm0.Class5#getRefClass0_55 Ref Class0 55}'. - * - * - * @return the meta object for the reference 'Ref Class0 55'. - * @see mm0.Class5#getRefClass0_55() - * @see #getClass5() - * @generated - */ - EReference getClass5_RefClass0_55(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#isAttEBoolean_62 Att EBoolean 62}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 62'. - * @see mm0.Class5#isAttEBoolean_62() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEBoolean_62(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#isAttEBoolean_65 Att EBoolean 65}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 65'. - * @see mm0.Class5#isAttEBoolean_65() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEBoolean_65(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#getAttEInt_67 Att EInt 67}'. - * - * - * @return the meta object for the attribute 'Att EInt 67'. - * @see mm0.Class5#getAttEInt_67() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEInt_67(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#isAttEBoolean_100 Att EBoolean 100}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 100'. - * @see mm0.Class5#isAttEBoolean_100() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEBoolean_100(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#isAttEBoolean_138 Att EBoolean 138}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 138'. - * @see mm0.Class5#isAttEBoolean_138() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEBoolean_138(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#getAttEInt_142 Att EInt 142}'. - * - * - * @return the meta object for the attribute 'Att EInt 142'. - * @see mm0.Class5#getAttEInt_142() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEInt_142(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#getAttEInt_150 Att EInt 150}'. - * - * - * @return the meta object for the attribute 'Att EInt 150'. - * @see mm0.Class5#getAttEInt_150() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEInt_150(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#isAttEBoolean_151 Att EBoolean 151}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 151'. - * @see mm0.Class5#isAttEBoolean_151() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEBoolean_151(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#getAttEInt_155 Att EInt 155}'. - * - * - * @return the meta object for the attribute 'Att EInt 155'. - * @see mm0.Class5#getAttEInt_155() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEInt_155(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#getAttEInt_171 Att EInt 171}'. - * - * - * @return the meta object for the attribute 'Att EInt 171'. - * @see mm0.Class5#getAttEInt_171() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEInt_171(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class5#isAttEBoolean_181_m Att EBoolean 181 m}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 181 m'. - * @see mm0.Class5#isAttEBoolean_181_m() - * @see #getClass5() - * @generated - */ - EAttribute getClass5_AttEBoolean_181_m(); - - /** - * Returns the meta object for class '{@link mm0.Class6 Class6}'. - * - * - * @return the meta object for class 'Class6'. - * @see mm0.Class6 - * @generated - */ - EClass getClass6(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#isAttEBoolean_17 Att EBoolean 17}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 17'. - * @see mm0.Class6#isAttEBoolean_17() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEBoolean_17(); - - /** - * Returns the meta object for the reference '{@link mm0.Class6#getRefClass1_38 Ref Class1 38}'. - * - * - * @return the meta object for the reference 'Ref Class1 38'. - * @see mm0.Class6#getRefClass1_38() - * @see #getClass6() - * @generated - */ - EReference getClass6_RefClass1_38(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#isAttEBoolean_42 Att EBoolean 42}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 42'. - * @see mm0.Class6#isAttEBoolean_42() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEBoolean_42(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#isAttEBoolean_52 Att EBoolean 52}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 52'. - * @see mm0.Class6#isAttEBoolean_52() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEBoolean_52(); - - /** - * Returns the meta object for the reference '{@link mm0.Class6#getRefClass4_57 Ref Class4 57}'. - * - * - * @return the meta object for the reference 'Ref Class4 57'. - * @see mm0.Class6#getRefClass4_57() - * @see #getClass6() - * @generated - */ - EReference getClass6_RefClass4_57(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#isAttEBoolean_71 Att EBoolean 71}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 71'. - * @see mm0.Class6#isAttEBoolean_71() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEBoolean_71(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#isAttEBoolean_77 Att EBoolean 77}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 77'. - * @see mm0.Class6#isAttEBoolean_77() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEBoolean_77(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#isAttEBoolean_83 Att EBoolean 83}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 83'. - * @see mm0.Class6#isAttEBoolean_83() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEBoolean_83(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#isAttEBoolean_85 Att EBoolean 85}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 85'. - * @see mm0.Class6#isAttEBoolean_85() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEBoolean_85(); - - /** - * Returns the meta object for the reference '{@link mm0.Class6#getRefClass1_110 Ref Class1 110}'. - * - * - * @return the meta object for the reference 'Ref Class1 110'. - * @see mm0.Class6#getRefClass1_110() - * @see #getClass6() - * @generated - */ - EReference getClass6_RefClass1_110(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#isAttEBoolean_111 Att EBoolean 111}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 111'. - * @see mm0.Class6#isAttEBoolean_111() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEBoolean_111(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#getAttEInt_129 Att EInt 129}'. - * - * - * @return the meta object for the attribute 'Att EInt 129'. - * @see mm0.Class6#getAttEInt_129() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEInt_129(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#isAttEBoolean_131 Att EBoolean 131}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 131'. - * @see mm0.Class6#isAttEBoolean_131() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEBoolean_131(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#isAttEBoolean_141 Att EBoolean 141}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 141'. - * @see mm0.Class6#isAttEBoolean_141() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEBoolean_141(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#isAttEBoolean_147 Att EBoolean 147}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 147'. - * @see mm0.Class6#isAttEBoolean_147() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEBoolean_147(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#getAttEInt_158 Att EInt 158}'. - * - * - * @return the meta object for the attribute 'Att EInt 158'. - * @see mm0.Class6#getAttEInt_158() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEInt_158(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#isAttEBoolean_160 Att EBoolean 160}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 160'. - * @see mm0.Class6#isAttEBoolean_160() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEBoolean_160(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#getAttEInt_162 Att EInt 162}'. - * - * - * @return the meta object for the attribute 'Att EInt 162'. - * @see mm0.Class6#getAttEInt_162() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEInt_162(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#getAttEInt_176_m Att EInt 176 m}'. - * - * - * @return the meta object for the attribute 'Att EInt 176 m'. - * @see mm0.Class6#getAttEInt_176_m() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEInt_176_m(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class6#isAttEBoolean_184_m Att EBoolean 184 m}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 184 m'. - * @see mm0.Class6#isAttEBoolean_184_m() - * @see #getClass6() - * @generated - */ - EAttribute getClass6_AttEBoolean_184_m(); - - /** - * Returns the meta object for class '{@link mm0.Class7 Class7}'. - * - * - * @return the meta object for class 'Class7'. - * @see mm0.Class7 - * @generated - */ - EClass getClass7(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class7#isAttEBoolean_37 Att EBoolean 37}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 37'. - * @see mm0.Class7#isAttEBoolean_37() - * @see #getClass7() - * @generated - */ - EAttribute getClass7_AttEBoolean_37(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class7#isAttEBoolean_47 Att EBoolean 47}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 47'. - * @see mm0.Class7#isAttEBoolean_47() - * @see #getClass7() - * @generated - */ - EAttribute getClass7_AttEBoolean_47(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class7#getAttEInt_56 Att EInt 56}'. - * - * - * @return the meta object for the attribute 'Att EInt 56'. - * @see mm0.Class7#getAttEInt_56() - * @see #getClass7() - * @generated - */ - EAttribute getClass7_AttEInt_56(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class7#isAttEBoolean_82 Att EBoolean 82}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 82'. - * @see mm0.Class7#isAttEBoolean_82() - * @see #getClass7() - * @generated - */ - EAttribute getClass7_AttEBoolean_82(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class7#getAttEInt_91 Att EInt 91}'. - * - * - * @return the meta object for the attribute 'Att EInt 91'. - * @see mm0.Class7#getAttEInt_91() - * @see #getClass7() - * @generated - */ - EAttribute getClass7_AttEInt_91(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class7#getAttEInt_95 Att EInt 95}'. - * - * - * @return the meta object for the attribute 'Att EInt 95'. - * @see mm0.Class7#getAttEInt_95() - * @see #getClass7() - * @generated - */ - EAttribute getClass7_AttEInt_95(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class7#getAttEInt_96 Att EInt 96}'. - * - * - * @return the meta object for the attribute 'Att EInt 96'. - * @see mm0.Class7#getAttEInt_96() - * @see #getClass7() - * @generated - */ - EAttribute getClass7_AttEInt_96(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class7#getAttEInt_134 Att EInt 134}'. - * - * - * @return the meta object for the attribute 'Att EInt 134'. - * @see mm0.Class7#getAttEInt_134() - * @see #getClass7() - * @generated - */ - EAttribute getClass7_AttEInt_134(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class7#getAttEInt_136 Att EInt 136}'. - * - * - * @return the meta object for the attribute 'Att EInt 136'. - * @see mm0.Class7#getAttEInt_136() - * @see #getClass7() - * @generated - */ - EAttribute getClass7_AttEInt_136(); - - /** - * Returns the meta object for the reference '{@link mm0.Class7#getRefClass7_137 Ref Class7 137}'. - * - * - * @return the meta object for the reference 'Ref Class7 137'. - * @see mm0.Class7#getRefClass7_137() - * @see #getClass7() - * @generated - */ - EReference getClass7_RefClass7_137(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class7#getAttEInt_153 Att EInt 153}'. - * - * - * @return the meta object for the attribute 'Att EInt 153'. - * @see mm0.Class7#getAttEInt_153() - * @see #getClass7() - * @generated - */ - EAttribute getClass7_AttEInt_153(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class7#getAttEInt_157 Att EInt 157}'. - * - * - * @return the meta object for the attribute 'Att EInt 157'. - * @see mm0.Class7#getAttEInt_157() - * @see #getClass7() - * @generated - */ - EAttribute getClass7_AttEInt_157(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class7#isAttEBoolean_177_m Att EBoolean 177 m}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 177 m'. - * @see mm0.Class7#isAttEBoolean_177_m() - * @see #getClass7() - * @generated - */ - EAttribute getClass7_AttEBoolean_177_m(); - - /** - * Returns the meta object for class '{@link mm0.Class8 Class8}'. - * - * - * @return the meta object for class 'Class8'. - * @see mm0.Class8 - * @generated - */ - EClass getClass8(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class8#getAttEInt_9 Att EInt 9}'. - * - * - * @return the meta object for the attribute 'Att EInt 9'. - * @see mm0.Class8#getAttEInt_9() - * @see #getClass8() - * @generated - */ - EAttribute getClass8_AttEInt_9(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class8#getAttEInt_14 Att EInt 14}'. - * - * - * @return the meta object for the attribute 'Att EInt 14'. - * @see mm0.Class8#getAttEInt_14() - * @see #getClass8() - * @generated - */ - EAttribute getClass8_AttEInt_14(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class8#getAttEInt_25 Att EInt 25}'. - * - * - * @return the meta object for the attribute 'Att EInt 25'. - * @see mm0.Class8#getAttEInt_25() - * @see #getClass8() - * @generated - */ - EAttribute getClass8_AttEInt_25(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class8#getAttEInt_33 Att EInt 33}'. - * - * - * @return the meta object for the attribute 'Att EInt 33'. - * @see mm0.Class8#getAttEInt_33() - * @see #getClass8() - * @generated - */ - EAttribute getClass8_AttEInt_33(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class8#isAttEBoolean_34 Att EBoolean 34}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 34'. - * @see mm0.Class8#isAttEBoolean_34() - * @see #getClass8() - * @generated - */ - EAttribute getClass8_AttEBoolean_34(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class8#isAttEBoolean_43 Att EBoolean 43}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 43'. - * @see mm0.Class8#isAttEBoolean_43() - * @see #getClass8() - * @generated - */ - EAttribute getClass8_AttEBoolean_43(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class8#isAttEBoolean_51 Att EBoolean 51}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 51'. - * @see mm0.Class8#isAttEBoolean_51() - * @see #getClass8() - * @generated - */ - EAttribute getClass8_AttEBoolean_51(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class8#isAttEBoolean_64 Att EBoolean 64}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 64'. - * @see mm0.Class8#isAttEBoolean_64() - * @see #getClass8() - * @generated - */ - EAttribute getClass8_AttEBoolean_64(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class8#isAttEBoolean_75 Att EBoolean 75}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 75'. - * @see mm0.Class8#isAttEBoolean_75() - * @see #getClass8() - * @generated - */ - EAttribute getClass8_AttEBoolean_75(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class8#getAttEInt_86 Att EInt 86}'. - * - * - * @return the meta object for the attribute 'Att EInt 86'. - * @see mm0.Class8#getAttEInt_86() - * @see #getClass8() - * @generated - */ - EAttribute getClass8_AttEInt_86(); - - /** - * Returns the meta object for the reference '{@link mm0.Class8#getRefClass9_97 Ref Class9 97}'. - * - * - * @return the meta object for the reference 'Ref Class9 97'. - * @see mm0.Class8#getRefClass9_97() - * @see #getClass8() - * @generated - */ - EReference getClass8_RefClass9_97(); - - /** - * Returns the meta object for the reference '{@link mm0.Class8#getRefClass7_115 Ref Class7 115}'. - * - * - * @return the meta object for the reference 'Ref Class7 115'. - * @see mm0.Class8#getRefClass7_115() - * @see #getClass8() - * @generated - */ - EReference getClass8_RefClass7_115(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class8#isAttEBoolean_126 Att EBoolean 126}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 126'. - * @see mm0.Class8#isAttEBoolean_126() - * @see #getClass8() - * @generated - */ - EAttribute getClass8_AttEBoolean_126(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class8#isAttEBoolean_145 Att EBoolean 145}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 145'. - * @see mm0.Class8#isAttEBoolean_145() - * @see #getClass8() - * @generated - */ - EAttribute getClass8_AttEBoolean_145(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class8#getAttEInt_164 Att EInt 164}'. - * - * - * @return the meta object for the attribute 'Att EInt 164'. - * @see mm0.Class8#getAttEInt_164() - * @see #getClass8() - * @generated - */ - EAttribute getClass8_AttEInt_164(); - - /** - * Returns the meta object for class '{@link mm0.Class9 Class9}'. - * - * - * @return the meta object for class 'Class9'. - * @see mm0.Class9 - * @generated - */ - EClass getClass9(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class9#isAttEBoolean_3 Att EBoolean 3}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 3'. - * @see mm0.Class9#isAttEBoolean_3() - * @see #getClass9() - * @generated - */ - EAttribute getClass9_AttEBoolean_3(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class9#getAttEInt_24 Att EInt 24}'. - * - * - * @return the meta object for the attribute 'Att EInt 24'. - * @see mm0.Class9#getAttEInt_24() - * @see #getClass9() - * @generated - */ - EAttribute getClass9_AttEInt_24(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class9#getAttEInt_29 Att EInt 29}'. - * - * - * @return the meta object for the attribute 'Att EInt 29'. - * @see mm0.Class9#getAttEInt_29() - * @see #getClass9() - * @generated - */ - EAttribute getClass9_AttEInt_29(); - - /** - * Returns the meta object for the reference '{@link mm0.Class9#getRefClass8_45 Ref Class8 45}'. - * - * - * @return the meta object for the reference 'Ref Class8 45'. - * @see mm0.Class9#getRefClass8_45() - * @see #getClass9() - * @generated - */ - EReference getClass9_RefClass8_45(); - - /** - * Returns the meta object for the reference '{@link mm0.Class9#getRefClass4_61 Ref Class4 61}'. - * - * - * @return the meta object for the reference 'Ref Class4 61'. - * @see mm0.Class9#getRefClass4_61() - * @see #getClass9() - * @generated - */ - EReference getClass9_RefClass4_61(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class9#isAttEBoolean_70 Att EBoolean 70}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 70'. - * @see mm0.Class9#isAttEBoolean_70() - * @see #getClass9() - * @generated - */ - EAttribute getClass9_AttEBoolean_70(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class9#getAttEInt_93 Att EInt 93}'. - * - * - * @return the meta object for the attribute 'Att EInt 93'. - * @see mm0.Class9#getAttEInt_93() - * @see #getClass9() - * @generated - */ - EAttribute getClass9_AttEInt_93(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class9#isAttEBoolean_103 Att EBoolean 103}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 103'. - * @see mm0.Class9#isAttEBoolean_103() - * @see #getClass9() - * @generated - */ - EAttribute getClass9_AttEBoolean_103(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class9#getAttEInt_106 Att EInt 106}'. - * - * - * @return the meta object for the attribute 'Att EInt 106'. - * @see mm0.Class9#getAttEInt_106() - * @see #getClass9() - * @generated - */ - EAttribute getClass9_AttEInt_106(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class9#getAttEInt_130 Att EInt 130}'. - * - * - * @return the meta object for the attribute 'Att EInt 130'. - * @see mm0.Class9#getAttEInt_130() - * @see #getClass9() - * @generated - */ - EAttribute getClass9_AttEInt_130(); - - /** - * Returns the meta object for the reference '{@link mm0.Class9#getRefClass8_143 Ref Class8 143}'. - * - * - * @return the meta object for the reference 'Ref Class8 143'. - * @see mm0.Class9#getRefClass8_143() - * @see #getClass9() - * @generated - */ - EReference getClass9_RefClass8_143(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class9#isAttEBoolean_166 Att EBoolean 166}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 166'. - * @see mm0.Class9#isAttEBoolean_166() - * @see #getClass9() - * @generated - */ - EAttribute getClass9_AttEBoolean_166(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class9#isAttEBoolean_168 Att EBoolean 168}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 168'. - * @see mm0.Class9#isAttEBoolean_168() - * @see #getClass9() - * @generated - */ - EAttribute getClass9_AttEBoolean_168(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class9#isAttEBoolean_178_m Att EBoolean 178 m}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 178 m'. - * @see mm0.Class9#isAttEBoolean_178_m() - * @see #getClass9() - * @generated - */ - EAttribute getClass9_AttEBoolean_178_m(); - - /** - * Returns the meta object for class '{@link mm0.Class10 Class10}'. - * - * - * @return the meta object for class 'Class10'. - * @see mm0.Class10 - * @generated - */ - EClass getClass10(); - - /** - * Returns the meta object for the reference '{@link mm0.Class10#getRefClass3_2 Ref Class3 2}'. - * - * - * @return the meta object for the reference 'Ref Class3 2'. - * @see mm0.Class10#getRefClass3_2() - * @see #getClass10() - * @generated - */ - EReference getClass10_RefClass3_2(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#getAttEInt_11 Att EInt 11}'. - * - * - * @return the meta object for the attribute 'Att EInt 11'. - * @see mm0.Class10#getAttEInt_11() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEInt_11(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#isAttEBoolean_15 Att EBoolean 15}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 15'. - * @see mm0.Class10#isAttEBoolean_15() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEBoolean_15(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#getAttEInt_32 Att EInt 32}'. - * - * - * @return the meta object for the attribute 'Att EInt 32'. - * @see mm0.Class10#getAttEInt_32() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEInt_32(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#getAttEInt_44 Att EInt 44}'. - * - * - * @return the meta object for the attribute 'Att EInt 44'. - * @see mm0.Class10#getAttEInt_44() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEInt_44(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#isAttEBoolean_60 Att EBoolean 60}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 60'. - * @see mm0.Class10#isAttEBoolean_60() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEBoolean_60(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#getAttEInt_73 Att EInt 73}'. - * - * - * @return the meta object for the attribute 'Att EInt 73'. - * @see mm0.Class10#getAttEInt_73() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEInt_73(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#isAttEBoolean_74 Att EBoolean 74}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 74'. - * @see mm0.Class10#isAttEBoolean_74() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEBoolean_74(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#isAttEBoolean_79 Att EBoolean 79}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 79'. - * @see mm0.Class10#isAttEBoolean_79() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEBoolean_79(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#getAttEInt_81 Att EInt 81}'. - * - * - * @return the meta object for the attribute 'Att EInt 81'. - * @see mm0.Class10#getAttEInt_81() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEInt_81(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#getAttEInt_84 Att EInt 84}'. - * - * - * @return the meta object for the attribute 'Att EInt 84'. - * @see mm0.Class10#getAttEInt_84() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEInt_84(); - - /** - * Returns the meta object for the reference '{@link mm0.Class10#getRefClass10_112 Ref Class10 112}'. - * - * - * @return the meta object for the reference 'Ref Class10 112'. - * @see mm0.Class10#getRefClass10_112() - * @see #getClass10() - * @generated - */ - EReference getClass10_RefClass10_112(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#isAttEBoolean_118 Att EBoolean 118}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 118'. - * @see mm0.Class10#isAttEBoolean_118() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEBoolean_118(); - - /** - * Returns the meta object for the reference '{@link mm0.Class10#getRefClass9_119 Ref Class9 119}'. - * - * - * @return the meta object for the reference 'Ref Class9 119'. - * @see mm0.Class10#getRefClass9_119() - * @see #getClass10() - * @generated - */ - EReference getClass10_RefClass9_119(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#getAttEInt_121 Att EInt 121}'. - * - * - * @return the meta object for the attribute 'Att EInt 121'. - * @see mm0.Class10#getAttEInt_121() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEInt_121(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#isAttEBoolean_123 Att EBoolean 123}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 123'. - * @see mm0.Class10#isAttEBoolean_123() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEBoolean_123(); - - /** - * Returns the meta object for the reference '{@link mm0.Class10#getRefClass4_124 Ref Class4 124}'. - * - * - * @return the meta object for the reference 'Ref Class4 124'. - * @see mm0.Class10#getRefClass4_124() - * @see #getClass10() - * @generated - */ - EReference getClass10_RefClass4_124(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#getAttEInt_125 Att EInt 125}'. - * - * - * @return the meta object for the attribute 'Att EInt 125'. - * @see mm0.Class10#getAttEInt_125() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEInt_125(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#isAttEBoolean_128 Att EBoolean 128}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 128'. - * @see mm0.Class10#isAttEBoolean_128() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEBoolean_128(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#getAttEInt_144 Att EInt 144}'. - * - * - * @return the meta object for the attribute 'Att EInt 144'. - * @see mm0.Class10#getAttEInt_144() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEInt_144(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#isAttEBoolean_152 Att EBoolean 152}'. - * - * - * @return the meta object for the attribute 'Att EBoolean 152'. - * @see mm0.Class10#isAttEBoolean_152() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEBoolean_152(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#getAttEInt_173_m Att EInt 173 m}'. - * - * - * @return the meta object for the attribute 'Att EInt 173 m'. - * @see mm0.Class10#getAttEInt_173_m() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEInt_173_m(); - - /** - * Returns the meta object for the attribute '{@link mm0.Class10#getAttEInt_183_m Att EInt 183 m}'. - * - * - * @return the meta object for the attribute 'Att EInt 183 m'. - * @see mm0.Class10#getAttEInt_183_m() - * @see #getClass10() - * @generated - */ - EAttribute getClass10_AttEInt_183_m(); - - /** - * Returns the factory that creates the instances of the model. - * - * - * @return the factory that creates the instances of the model. - * @generated - */ - Mm0Factory getMm0Factory(); - - /** - * - * Defines literals for the meta objects that represent - *
    - *
  • each class,
  • - *
  • each feature of each class,
  • - *
  • each enum,
  • - *
  • and each data type
  • - *
- * - * @generated - */ - interface Literals { - /** - * The meta object literal for the '{@link mm0.impl.Class0Impl Class0}' class. - * - * - * @see mm0.impl.Class0Impl - * @see mm0.impl.Mm0PackageImpl#getClass0() - * @generated - */ - EClass CLASS0 = eINSTANCE.getClass0(); - - /** - * The meta object literal for the 'Att EBoolean 20' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EBOOLEAN_20 = eINSTANCE - .getClass0_AttEBoolean_20(); - - /** - * The meta object literal for the 'Att EInt 23' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EINT_23 = eINSTANCE.getClass0_AttEInt_23(); - - /** - * The meta object literal for the 'Att EInt 27' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EINT_27 = eINSTANCE.getClass0_AttEInt_27(); - - /** - * The meta object literal for the 'Ref Class9 41' reference feature. - * - * - * @generated - */ - EReference CLASS0__REF_CLASS9_41 = eINSTANCE.getClass0_RefClass9_41(); - - /** - * The meta object literal for the 'Att EBoolean 49' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EBOOLEAN_49 = eINSTANCE - .getClass0_AttEBoolean_49(); - - /** - * The meta object literal for the 'Att EInt 53' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EINT_53 = eINSTANCE.getClass0_AttEInt_53(); - - /** - * The meta object literal for the 'Att EInt 63' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EINT_63 = eINSTANCE.getClass0_AttEInt_63(); - - /** - * The meta object literal for the 'Att EInt 66' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EINT_66 = eINSTANCE.getClass0_AttEInt_66(); - - /** - * The meta object literal for the 'Att EInt 72' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EINT_72 = eINSTANCE.getClass0_AttEInt_72(); - - /** - * The meta object literal for the 'Att EBoolean 90' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EBOOLEAN_90 = eINSTANCE - .getClass0_AttEBoolean_90(); - - /** - * The meta object literal for the 'Att EInt 94' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EINT_94 = eINSTANCE.getClass0_AttEInt_94(); - - /** - * The meta object literal for the 'Att EInt 107' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EINT_107 = eINSTANCE.getClass0_AttEInt_107(); - - /** - * The meta object literal for the 'Att EInt 108' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EINT_108 = eINSTANCE.getClass0_AttEInt_108(); - - /** - * The meta object literal for the 'Att EBoolean 116' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EBOOLEAN_116 = eINSTANCE - .getClass0_AttEBoolean_116(); - - /** - * The meta object literal for the 'Att EInt 120' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EINT_120 = eINSTANCE.getClass0_AttEInt_120(); - - /** - * The meta object literal for the 'Att EInt 133' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EINT_133 = eINSTANCE.getClass0_AttEInt_133(); - - /** - * The meta object literal for the 'Att EInt 135' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EINT_135 = eINSTANCE.getClass0_AttEInt_135(); - - /** - * The meta object literal for the 'Att EBoolean 149' attribute feature. - * - * - * @generated - */ - EAttribute CLASS0__ATT_EBOOLEAN_149 = eINSTANCE - .getClass0_AttEBoolean_149(); - - /** - * The meta object literal for the 'Ref Class5 172 m' reference feature. - * - * - * @generated - */ - EReference CLASS0__REF_CLASS5_172_M = eINSTANCE - .getClass0_RefClass5_172_m(); - - /** - * The meta object literal for the 'Ref Class9 180 m' reference feature. - * - * - * @generated - */ - EReference CLASS0__REF_CLASS9_180_M = eINSTANCE - .getClass0_RefClass9_180_m(); - - /** - * The meta object literal for the '{@link mm0.impl.Class1Impl Class1}' class. - * - * - * @see mm0.impl.Class1Impl - * @see mm0.impl.Mm0PackageImpl#getClass1() - * @generated - */ - EClass CLASS1 = eINSTANCE.getClass1(); - - /** - * The meta object literal for the 'Att EBoolean 1' attribute feature. - * - * - * @generated - */ - EAttribute CLASS1__ATT_EBOOLEAN_1 = eINSTANCE.getClass1_AttEBoolean_1(); - - /** - * The meta object literal for the 'Att EBoolean 13' attribute feature. - * - * - * @generated - */ - EAttribute CLASS1__ATT_EBOOLEAN_13 = eINSTANCE - .getClass1_AttEBoolean_13(); - - /** - * The meta object literal for the 'Att EBoolean 46' attribute feature. - * - * - * @generated - */ - EAttribute CLASS1__ATT_EBOOLEAN_46 = eINSTANCE - .getClass1_AttEBoolean_46(); - - /** - * The meta object literal for the 'Ref Class9 54' reference feature. - * - * - * @generated - */ - EReference CLASS1__REF_CLASS9_54 = eINSTANCE.getClass1_RefClass9_54(); - - /** - * The meta object literal for the 'Ref Class6 59' reference feature. - * - * - * @generated - */ - EReference CLASS1__REF_CLASS6_59 = eINSTANCE.getClass1_RefClass6_59(); - - /** - * The meta object literal for the 'Ref Class10 80' reference feature. - * - * - * @generated - */ - EReference CLASS1__REF_CLASS10_80 = eINSTANCE.getClass1_RefClass10_80(); - - /** - * The meta object literal for the 'Ref Class10 92' reference feature. - * - * - * @generated - */ - EReference CLASS1__REF_CLASS10_92 = eINSTANCE.getClass1_RefClass10_92(); - - /** - * The meta object literal for the 'Att EBoolean 98' attribute feature. - * - * - * @generated - */ - EAttribute CLASS1__ATT_EBOOLEAN_98 = eINSTANCE - .getClass1_AttEBoolean_98(); - - /** - * The meta object literal for the 'Att EBoolean 127' attribute feature. - * - * - * @generated - */ - EAttribute CLASS1__ATT_EBOOLEAN_127 = eINSTANCE - .getClass1_AttEBoolean_127(); - - /** - * The meta object literal for the 'Att EBoolean 148' attribute feature. - * - * - * @generated - */ - EAttribute CLASS1__ATT_EBOOLEAN_148 = eINSTANCE - .getClass1_AttEBoolean_148(); - - /** - * The meta object literal for the 'Att EInt 154' attribute feature. - * - * - * @generated - */ - EAttribute CLASS1__ATT_EINT_154 = eINSTANCE.getClass1_AttEInt_154(); - - /** - * The meta object literal for the 'Att EInt 175 m' attribute feature. - * - * - * @generated - */ - EAttribute CLASS1__ATT_EINT_175_M = eINSTANCE.getClass1_AttEInt_175_m(); - - /** - * The meta object literal for the '{@link mm0.impl.Class2Impl Class2}' class. - * - * - * @see mm0.impl.Class2Impl - * @see mm0.impl.Mm0PackageImpl#getClass2() - * @generated - */ - EClass CLASS2 = eINSTANCE.getClass2(); - - /** - * The meta object literal for the 'Att EInt 12' attribute feature. - * - * - * @generated - */ - EAttribute CLASS2__ATT_EINT_12 = eINSTANCE.getClass2_AttEInt_12(); - - /** - * The meta object literal for the 'Att EInt 18' attribute feature. - * - * - * @generated - */ - EAttribute CLASS2__ATT_EINT_18 = eINSTANCE.getClass2_AttEInt_18(); - - /** - * The meta object literal for the 'Att EBoolean 21' attribute feature. - * - * - * @generated - */ - EAttribute CLASS2__ATT_EBOOLEAN_21 = eINSTANCE - .getClass2_AttEBoolean_21(); - - /** - * The meta object literal for the 'Att EBoolean 50' attribute feature. - * - * - * @generated - */ - EAttribute CLASS2__ATT_EBOOLEAN_50 = eINSTANCE - .getClass2_AttEBoolean_50(); - - /** - * The meta object literal for the 'Att EBoolean 76' attribute feature. - * - * - * @generated - */ - EAttribute CLASS2__ATT_EBOOLEAN_76 = eINSTANCE - .getClass2_AttEBoolean_76(); - - /** - * The meta object literal for the 'Att EInt 104' attribute feature. - * - * - * @generated - */ - EAttribute CLASS2__ATT_EINT_104 = eINSTANCE.getClass2_AttEInt_104(); - - /** - * The meta object literal for the 'Att EInt 117' attribute feature. - * - * - * @generated - */ - EAttribute CLASS2__ATT_EINT_117 = eINSTANCE.getClass2_AttEInt_117(); - - /** - * The meta object literal for the 'Att EInt 132' attribute feature. - * - * - * @generated - */ - EAttribute CLASS2__ATT_EINT_132 = eINSTANCE.getClass2_AttEInt_132(); - - /** - * The meta object literal for the 'Att EInt 140' attribute feature. - * - * - * @generated - */ - EAttribute CLASS2__ATT_EINT_140 = eINSTANCE.getClass2_AttEInt_140(); - - /** - * The meta object literal for the 'Att EBoolean 146' attribute feature. - * - * - * @generated - */ - EAttribute CLASS2__ATT_EBOOLEAN_146 = eINSTANCE - .getClass2_AttEBoolean_146(); - - /** - * The meta object literal for the 'Att EInt 161' attribute feature. - * - * - * @generated - */ - EAttribute CLASS2__ATT_EINT_161 = eINSTANCE.getClass2_AttEInt_161(); - - /** - * The meta object literal for the 'Att EInt 170' attribute feature. - * - * - * @generated - */ - EAttribute CLASS2__ATT_EINT_170 = eINSTANCE.getClass2_AttEInt_170(); - - /** - * The meta object literal for the 'Att EInt 185 m' attribute feature. - * - * - * @generated - */ - EAttribute CLASS2__ATT_EINT_185_M = eINSTANCE.getClass2_AttEInt_185_m(); - - /** - * The meta object literal for the '{@link mm0.impl.Class3Impl Class3}' class. - * - * - * @see mm0.impl.Class3Impl - * @see mm0.impl.Mm0PackageImpl#getClass3() - * @generated - */ - EClass CLASS3 = eINSTANCE.getClass3(); - - /** - * The meta object literal for the 'Att EInt 10' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EINT_10 = eINSTANCE.getClass3_AttEInt_10(); - - /** - * The meta object literal for the 'Ref Class9 26' reference feature. - * - * - * @generated - */ - EReference CLASS3__REF_CLASS9_26 = eINSTANCE.getClass3_RefClass9_26(); - - /** - * The meta object literal for the 'Att EInt 30' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EINT_30 = eINSTANCE.getClass3_AttEInt_30(); - - /** - * The meta object literal for the 'Att EInt 40' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EINT_40 = eINSTANCE.getClass3_AttEInt_40(); - - /** - * The meta object literal for the 'Att EInt 48' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EINT_48 = eINSTANCE.getClass3_AttEInt_48(); - - /** - * The meta object literal for the 'Att EInt 68' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EINT_68 = eINSTANCE.getClass3_AttEInt_68(); - - /** - * The meta object literal for the 'Att EBoolean 69' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EBOOLEAN_69 = eINSTANCE - .getClass3_AttEBoolean_69(); - - /** - * The meta object literal for the 'Att EBoolean 78' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EBOOLEAN_78 = eINSTANCE - .getClass3_AttEBoolean_78(); - - /** - * The meta object literal for the 'Att EBoolean 87' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EBOOLEAN_87 = eINSTANCE - .getClass3_AttEBoolean_87(); - - /** - * The meta object literal for the 'Att EBoolean 88' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EBOOLEAN_88 = eINSTANCE - .getClass3_AttEBoolean_88(); - - /** - * The meta object literal for the 'Att EBoolean 89' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EBOOLEAN_89 = eINSTANCE - .getClass3_AttEBoolean_89(); - - /** - * The meta object literal for the 'Att EInt 101' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EINT_101 = eINSTANCE.getClass3_AttEInt_101(); - - /** - * The meta object literal for the 'Att EBoolean 102' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EBOOLEAN_102 = eINSTANCE - .getClass3_AttEBoolean_102(); - - /** - * The meta object literal for the 'Ref Class0 105' reference feature. - * - * - * @generated - */ - EReference CLASS3__REF_CLASS0_105 = eINSTANCE.getClass3_RefClass0_105(); - - /** - * The meta object literal for the 'Att EInt 109' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EINT_109 = eINSTANCE.getClass3_AttEInt_109(); - - /** - * The meta object literal for the 'Att EBoolean 114' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EBOOLEAN_114 = eINSTANCE - .getClass3_AttEBoolean_114(); - - /** - * The meta object literal for the 'Ref Class1 122' reference feature. - * - * - * @generated - */ - EReference CLASS3__REF_CLASS1_122 = eINSTANCE.getClass3_RefClass1_122(); - - /** - * The meta object literal for the 'Att EBoolean 165' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EBOOLEAN_165 = eINSTANCE - .getClass3_AttEBoolean_165(); - - /** - * The meta object literal for the 'Ref Class2 167' reference feature. - * - * - * @generated - */ - EReference CLASS3__REF_CLASS2_167 = eINSTANCE.getClass3_RefClass2_167(); - - /** - * The meta object literal for the 'Att EInt 182 m' attribute feature. - * - * - * @generated - */ - EAttribute CLASS3__ATT_EINT_182_M = eINSTANCE.getClass3_AttEInt_182_m(); - - /** - * The meta object literal for the '{@link mm0.impl.Class4Impl Class4}' class. - * - * - * @see mm0.impl.Class4Impl - * @see mm0.impl.Mm0PackageImpl#getClass4() - * @generated - */ - EClass CLASS4 = eINSTANCE.getClass4(); - - /** - * The meta object literal for the 'Att EBoolean 5' attribute feature. - * - * - * @generated - */ - EAttribute CLASS4__ATT_EBOOLEAN_5 = eINSTANCE.getClass4_AttEBoolean_5(); - - /** - * The meta object literal for the 'Att EInt 6' attribute feature. - * - * - * @generated - */ - EAttribute CLASS4__ATT_EINT_6 = eINSTANCE.getClass4_AttEInt_6(); - - /** - * The meta object literal for the 'Att EBoolean 22' attribute feature. - * - * - * @generated - */ - EAttribute CLASS4__ATT_EBOOLEAN_22 = eINSTANCE - .getClass4_AttEBoolean_22(); - - /** - * The meta object literal for the 'Att EInt 35' attribute feature. - * - * - * @generated - */ - EAttribute CLASS4__ATT_EINT_35 = eINSTANCE.getClass4_AttEInt_35(); - - /** - * The meta object literal for the 'Att EBoolean 58' attribute feature. - * - * - * @generated - */ - EAttribute CLASS4__ATT_EBOOLEAN_58 = eINSTANCE - .getClass4_AttEBoolean_58(); - - /** - * The meta object literal for the 'Att EInt 99' attribute feature. - * - * - * @generated - */ - EAttribute CLASS4__ATT_EINT_99 = eINSTANCE.getClass4_AttEInt_99(); - - /** - * The meta object literal for the 'Att EInt 113' attribute feature. - * - * - * @generated - */ - EAttribute CLASS4__ATT_EINT_113 = eINSTANCE.getClass4_AttEInt_113(); - - /** - * The meta object literal for the 'Att EInt 139' attribute feature. - * - * - * @generated - */ - EAttribute CLASS4__ATT_EINT_139 = eINSTANCE.getClass4_AttEInt_139(); - - /** - * The meta object literal for the 'Att EBoolean 156' attribute feature. - * - * - * @generated - */ - EAttribute CLASS4__ATT_EBOOLEAN_156 = eINSTANCE - .getClass4_AttEBoolean_156(); - - /** - * The meta object literal for the 'Att EBoolean 159' attribute feature. - * - * - * @generated - */ - EAttribute CLASS4__ATT_EBOOLEAN_159 = eINSTANCE - .getClass4_AttEBoolean_159(); - - /** - * The meta object literal for the 'Ref Class8 163' reference feature. - * - * - * @generated - */ - EReference CLASS4__REF_CLASS8_163 = eINSTANCE.getClass4_RefClass8_163(); - - /** - * The meta object literal for the 'Att EBoolean 169' attribute feature. - * - * - * @generated - */ - EAttribute CLASS4__ATT_EBOOLEAN_169 = eINSTANCE - .getClass4_AttEBoolean_169(); - - /** - * The meta object literal for the 'Att EInt 174 m' attribute feature. - * - * - * @generated - */ - EAttribute CLASS4__ATT_EINT_174_M = eINSTANCE.getClass4_AttEInt_174_m(); - - /** - * The meta object literal for the 'Ref Class10 179 m' reference feature. - * - * - * @generated - */ - EReference CLASS4__REF_CLASS10_179_M = eINSTANCE - .getClass4_RefClass10_179_m(); - - /** - * The meta object literal for the '{@link mm0.impl.Class5Impl Class5}' class. - * - * - * @see mm0.impl.Class5Impl - * @see mm0.impl.Mm0PackageImpl#getClass5() - * @generated - */ - EClass CLASS5 = eINSTANCE.getClass5(); - - /** - * The meta object literal for the 'Att EBoolean 4' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EBOOLEAN_4 = eINSTANCE.getClass5_AttEBoolean_4(); - - /** - * The meta object literal for the 'Att EBoolean 7' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EBOOLEAN_7 = eINSTANCE.getClass5_AttEBoolean_7(); - - /** - * The meta object literal for the 'Att EBoolean 8' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EBOOLEAN_8 = eINSTANCE.getClass5_AttEBoolean_8(); - - /** - * The meta object literal for the 'Att EInt 16' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EINT_16 = eINSTANCE.getClass5_AttEInt_16(); - - /** - * The meta object literal for the 'Att EInt 19' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EINT_19 = eINSTANCE.getClass5_AttEInt_19(); - - /** - * The meta object literal for the 'Att EBoolean 28' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EBOOLEAN_28 = eINSTANCE - .getClass5_AttEBoolean_28(); - - /** - * The meta object literal for the 'Att EInt 31' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EINT_31 = eINSTANCE.getClass5_AttEInt_31(); - - /** - * The meta object literal for the 'Ref Class8 36' reference feature. - * - * - * @generated - */ - EReference CLASS5__REF_CLASS8_36 = eINSTANCE.getClass5_RefClass8_36(); - - /** - * The meta object literal for the 'Att EBoolean 39' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EBOOLEAN_39 = eINSTANCE - .getClass5_AttEBoolean_39(); - - /** - * The meta object literal for the 'Ref Class0 55' reference feature. - * - * - * @generated - */ - EReference CLASS5__REF_CLASS0_55 = eINSTANCE.getClass5_RefClass0_55(); - - /** - * The meta object literal for the 'Att EBoolean 62' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EBOOLEAN_62 = eINSTANCE - .getClass5_AttEBoolean_62(); - - /** - * The meta object literal for the 'Att EBoolean 65' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EBOOLEAN_65 = eINSTANCE - .getClass5_AttEBoolean_65(); - - /** - * The meta object literal for the 'Att EInt 67' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EINT_67 = eINSTANCE.getClass5_AttEInt_67(); - - /** - * The meta object literal for the 'Att EBoolean 100' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EBOOLEAN_100 = eINSTANCE - .getClass5_AttEBoolean_100(); - - /** - * The meta object literal for the 'Att EBoolean 138' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EBOOLEAN_138 = eINSTANCE - .getClass5_AttEBoolean_138(); - - /** - * The meta object literal for the 'Att EInt 142' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EINT_142 = eINSTANCE.getClass5_AttEInt_142(); - - /** - * The meta object literal for the 'Att EInt 150' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EINT_150 = eINSTANCE.getClass5_AttEInt_150(); - - /** - * The meta object literal for the 'Att EBoolean 151' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EBOOLEAN_151 = eINSTANCE - .getClass5_AttEBoolean_151(); - - /** - * The meta object literal for the 'Att EInt 155' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EINT_155 = eINSTANCE.getClass5_AttEInt_155(); - - /** - * The meta object literal for the 'Att EInt 171' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EINT_171 = eINSTANCE.getClass5_AttEInt_171(); - - /** - * The meta object literal for the 'Att EBoolean 181 m' attribute feature. - * - * - * @generated - */ - EAttribute CLASS5__ATT_EBOOLEAN_181_M = eINSTANCE - .getClass5_AttEBoolean_181_m(); - - /** - * The meta object literal for the '{@link mm0.impl.Class6Impl Class6}' class. - * - * - * @see mm0.impl.Class6Impl - * @see mm0.impl.Mm0PackageImpl#getClass6() - * @generated - */ - EClass CLASS6 = eINSTANCE.getClass6(); - - /** - * The meta object literal for the 'Att EBoolean 17' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EBOOLEAN_17 = eINSTANCE - .getClass6_AttEBoolean_17(); - - /** - * The meta object literal for the 'Ref Class1 38' reference feature. - * - * - * @generated - */ - EReference CLASS6__REF_CLASS1_38 = eINSTANCE.getClass6_RefClass1_38(); - - /** - * The meta object literal for the 'Att EBoolean 42' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EBOOLEAN_42 = eINSTANCE - .getClass6_AttEBoolean_42(); - - /** - * The meta object literal for the 'Att EBoolean 52' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EBOOLEAN_52 = eINSTANCE - .getClass6_AttEBoolean_52(); - - /** - * The meta object literal for the 'Ref Class4 57' reference feature. - * - * - * @generated - */ - EReference CLASS6__REF_CLASS4_57 = eINSTANCE.getClass6_RefClass4_57(); - - /** - * The meta object literal for the 'Att EBoolean 71' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EBOOLEAN_71 = eINSTANCE - .getClass6_AttEBoolean_71(); - - /** - * The meta object literal for the 'Att EBoolean 77' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EBOOLEAN_77 = eINSTANCE - .getClass6_AttEBoolean_77(); - - /** - * The meta object literal for the 'Att EBoolean 83' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EBOOLEAN_83 = eINSTANCE - .getClass6_AttEBoolean_83(); - - /** - * The meta object literal for the 'Att EBoolean 85' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EBOOLEAN_85 = eINSTANCE - .getClass6_AttEBoolean_85(); - - /** - * The meta object literal for the 'Ref Class1 110' reference feature. - * - * - * @generated - */ - EReference CLASS6__REF_CLASS1_110 = eINSTANCE.getClass6_RefClass1_110(); - - /** - * The meta object literal for the 'Att EBoolean 111' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EBOOLEAN_111 = eINSTANCE - .getClass6_AttEBoolean_111(); - - /** - * The meta object literal for the 'Att EInt 129' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EINT_129 = eINSTANCE.getClass6_AttEInt_129(); - - /** - * The meta object literal for the 'Att EBoolean 131' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EBOOLEAN_131 = eINSTANCE - .getClass6_AttEBoolean_131(); - - /** - * The meta object literal for the 'Att EBoolean 141' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EBOOLEAN_141 = eINSTANCE - .getClass6_AttEBoolean_141(); - - /** - * The meta object literal for the 'Att EBoolean 147' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EBOOLEAN_147 = eINSTANCE - .getClass6_AttEBoolean_147(); - - /** - * The meta object literal for the 'Att EInt 158' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EINT_158 = eINSTANCE.getClass6_AttEInt_158(); - - /** - * The meta object literal for the 'Att EBoolean 160' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EBOOLEAN_160 = eINSTANCE - .getClass6_AttEBoolean_160(); - - /** - * The meta object literal for the 'Att EInt 162' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EINT_162 = eINSTANCE.getClass6_AttEInt_162(); - - /** - * The meta object literal for the 'Att EInt 176 m' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EINT_176_M = eINSTANCE.getClass6_AttEInt_176_m(); - - /** - * The meta object literal for the 'Att EBoolean 184 m' attribute feature. - * - * - * @generated - */ - EAttribute CLASS6__ATT_EBOOLEAN_184_M = eINSTANCE - .getClass6_AttEBoolean_184_m(); - - /** - * The meta object literal for the '{@link mm0.impl.Class7Impl Class7}' class. - * - * - * @see mm0.impl.Class7Impl - * @see mm0.impl.Mm0PackageImpl#getClass7() - * @generated - */ - EClass CLASS7 = eINSTANCE.getClass7(); - - /** - * The meta object literal for the 'Att EBoolean 37' attribute feature. - * - * - * @generated - */ - EAttribute CLASS7__ATT_EBOOLEAN_37 = eINSTANCE - .getClass7_AttEBoolean_37(); - - /** - * The meta object literal for the 'Att EBoolean 47' attribute feature. - * - * - * @generated - */ - EAttribute CLASS7__ATT_EBOOLEAN_47 = eINSTANCE - .getClass7_AttEBoolean_47(); - - /** - * The meta object literal for the 'Att EInt 56' attribute feature. - * - * - * @generated - */ - EAttribute CLASS7__ATT_EINT_56 = eINSTANCE.getClass7_AttEInt_56(); - - /** - * The meta object literal for the 'Att EBoolean 82' attribute feature. - * - * - * @generated - */ - EAttribute CLASS7__ATT_EBOOLEAN_82 = eINSTANCE - .getClass7_AttEBoolean_82(); - - /** - * The meta object literal for the 'Att EInt 91' attribute feature. - * - * - * @generated - */ - EAttribute CLASS7__ATT_EINT_91 = eINSTANCE.getClass7_AttEInt_91(); - - /** - * The meta object literal for the 'Att EInt 95' attribute feature. - * - * - * @generated - */ - EAttribute CLASS7__ATT_EINT_95 = eINSTANCE.getClass7_AttEInt_95(); - - /** - * The meta object literal for the 'Att EInt 96' attribute feature. - * - * - * @generated - */ - EAttribute CLASS7__ATT_EINT_96 = eINSTANCE.getClass7_AttEInt_96(); - - /** - * The meta object literal for the 'Att EInt 134' attribute feature. - * - * - * @generated - */ - EAttribute CLASS7__ATT_EINT_134 = eINSTANCE.getClass7_AttEInt_134(); - - /** - * The meta object literal for the 'Att EInt 136' attribute feature. - * - * - * @generated - */ - EAttribute CLASS7__ATT_EINT_136 = eINSTANCE.getClass7_AttEInt_136(); - - /** - * The meta object literal for the 'Ref Class7 137' reference feature. - * - * - * @generated - */ - EReference CLASS7__REF_CLASS7_137 = eINSTANCE.getClass7_RefClass7_137(); - - /** - * The meta object literal for the 'Att EInt 153' attribute feature. - * - * - * @generated - */ - EAttribute CLASS7__ATT_EINT_153 = eINSTANCE.getClass7_AttEInt_153(); - - /** - * The meta object literal for the 'Att EInt 157' attribute feature. - * - * - * @generated - */ - EAttribute CLASS7__ATT_EINT_157 = eINSTANCE.getClass7_AttEInt_157(); - - /** - * The meta object literal for the 'Att EBoolean 177 m' attribute feature. - * - * - * @generated - */ - EAttribute CLASS7__ATT_EBOOLEAN_177_M = eINSTANCE - .getClass7_AttEBoolean_177_m(); - - /** - * The meta object literal for the '{@link mm0.impl.Class8Impl Class8}' class. - * - * - * @see mm0.impl.Class8Impl - * @see mm0.impl.Mm0PackageImpl#getClass8() - * @generated - */ - EClass CLASS8 = eINSTANCE.getClass8(); - - /** - * The meta object literal for the 'Att EInt 9' attribute feature. - * - * - * @generated - */ - EAttribute CLASS8__ATT_EINT_9 = eINSTANCE.getClass8_AttEInt_9(); - - /** - * The meta object literal for the 'Att EInt 14' attribute feature. - * - * - * @generated - */ - EAttribute CLASS8__ATT_EINT_14 = eINSTANCE.getClass8_AttEInt_14(); - - /** - * The meta object literal for the 'Att EInt 25' attribute feature. - * - * - * @generated - */ - EAttribute CLASS8__ATT_EINT_25 = eINSTANCE.getClass8_AttEInt_25(); - - /** - * The meta object literal for the 'Att EInt 33' attribute feature. - * - * - * @generated - */ - EAttribute CLASS8__ATT_EINT_33 = eINSTANCE.getClass8_AttEInt_33(); - - /** - * The meta object literal for the 'Att EBoolean 34' attribute feature. - * - * - * @generated - */ - EAttribute CLASS8__ATT_EBOOLEAN_34 = eINSTANCE - .getClass8_AttEBoolean_34(); - - /** - * The meta object literal for the 'Att EBoolean 43' attribute feature. - * - * - * @generated - */ - EAttribute CLASS8__ATT_EBOOLEAN_43 = eINSTANCE - .getClass8_AttEBoolean_43(); - - /** - * The meta object literal for the 'Att EBoolean 51' attribute feature. - * - * - * @generated - */ - EAttribute CLASS8__ATT_EBOOLEAN_51 = eINSTANCE - .getClass8_AttEBoolean_51(); - - /** - * The meta object literal for the 'Att EBoolean 64' attribute feature. - * - * - * @generated - */ - EAttribute CLASS8__ATT_EBOOLEAN_64 = eINSTANCE - .getClass8_AttEBoolean_64(); - - /** - * The meta object literal for the 'Att EBoolean 75' attribute feature. - * - * - * @generated - */ - EAttribute CLASS8__ATT_EBOOLEAN_75 = eINSTANCE - .getClass8_AttEBoolean_75(); - - /** - * The meta object literal for the 'Att EInt 86' attribute feature. - * - * - * @generated - */ - EAttribute CLASS8__ATT_EINT_86 = eINSTANCE.getClass8_AttEInt_86(); - - /** - * The meta object literal for the 'Ref Class9 97' reference feature. - * - * - * @generated - */ - EReference CLASS8__REF_CLASS9_97 = eINSTANCE.getClass8_RefClass9_97(); - - /** - * The meta object literal for the 'Ref Class7 115' reference feature. - * - * - * @generated - */ - EReference CLASS8__REF_CLASS7_115 = eINSTANCE.getClass8_RefClass7_115(); - - /** - * The meta object literal for the 'Att EBoolean 126' attribute feature. - * - * - * @generated - */ - EAttribute CLASS8__ATT_EBOOLEAN_126 = eINSTANCE - .getClass8_AttEBoolean_126(); - - /** - * The meta object literal for the 'Att EBoolean 145' attribute feature. - * - * - * @generated - */ - EAttribute CLASS8__ATT_EBOOLEAN_145 = eINSTANCE - .getClass8_AttEBoolean_145(); - - /** - * The meta object literal for the 'Att EInt 164' attribute feature. - * - * - * @generated - */ - EAttribute CLASS8__ATT_EINT_164 = eINSTANCE.getClass8_AttEInt_164(); - - /** - * The meta object literal for the '{@link mm0.impl.Class9Impl Class9}' class. - * - * - * @see mm0.impl.Class9Impl - * @see mm0.impl.Mm0PackageImpl#getClass9() - * @generated - */ - EClass CLASS9 = eINSTANCE.getClass9(); - - /** - * The meta object literal for the 'Att EBoolean 3' attribute feature. - * - * - * @generated - */ - EAttribute CLASS9__ATT_EBOOLEAN_3 = eINSTANCE.getClass9_AttEBoolean_3(); - - /** - * The meta object literal for the 'Att EInt 24' attribute feature. - * - * - * @generated - */ - EAttribute CLASS9__ATT_EINT_24 = eINSTANCE.getClass9_AttEInt_24(); - - /** - * The meta object literal for the 'Att EInt 29' attribute feature. - * - * - * @generated - */ - EAttribute CLASS9__ATT_EINT_29 = eINSTANCE.getClass9_AttEInt_29(); - - /** - * The meta object literal for the 'Ref Class8 45' reference feature. - * - * - * @generated - */ - EReference CLASS9__REF_CLASS8_45 = eINSTANCE.getClass9_RefClass8_45(); - - /** - * The meta object literal for the 'Ref Class4 61' reference feature. - * - * - * @generated - */ - EReference CLASS9__REF_CLASS4_61 = eINSTANCE.getClass9_RefClass4_61(); - - /** - * The meta object literal for the 'Att EBoolean 70' attribute feature. - * - * - * @generated - */ - EAttribute CLASS9__ATT_EBOOLEAN_70 = eINSTANCE - .getClass9_AttEBoolean_70(); - - /** - * The meta object literal for the 'Att EInt 93' attribute feature. - * - * - * @generated - */ - EAttribute CLASS9__ATT_EINT_93 = eINSTANCE.getClass9_AttEInt_93(); - - /** - * The meta object literal for the 'Att EBoolean 103' attribute feature. - * - * - * @generated - */ - EAttribute CLASS9__ATT_EBOOLEAN_103 = eINSTANCE - .getClass9_AttEBoolean_103(); - - /** - * The meta object literal for the 'Att EInt 106' attribute feature. - * - * - * @generated - */ - EAttribute CLASS9__ATT_EINT_106 = eINSTANCE.getClass9_AttEInt_106(); - - /** - * The meta object literal for the 'Att EInt 130' attribute feature. - * - * - * @generated - */ - EAttribute CLASS9__ATT_EINT_130 = eINSTANCE.getClass9_AttEInt_130(); - - /** - * The meta object literal for the 'Ref Class8 143' reference feature. - * - * - * @generated - */ - EReference CLASS9__REF_CLASS8_143 = eINSTANCE.getClass9_RefClass8_143(); - - /** - * The meta object literal for the 'Att EBoolean 166' attribute feature. - * - * - * @generated - */ - EAttribute CLASS9__ATT_EBOOLEAN_166 = eINSTANCE - .getClass9_AttEBoolean_166(); - - /** - * The meta object literal for the 'Att EBoolean 168' attribute feature. - * - * - * @generated - */ - EAttribute CLASS9__ATT_EBOOLEAN_168 = eINSTANCE - .getClass9_AttEBoolean_168(); - - /** - * The meta object literal for the 'Att EBoolean 178 m' attribute feature. - * - * - * @generated - */ - EAttribute CLASS9__ATT_EBOOLEAN_178_M = eINSTANCE - .getClass9_AttEBoolean_178_m(); - - /** - * The meta object literal for the '{@link mm0.impl.Class10Impl Class10}' class. - * - * - * @see mm0.impl.Class10Impl - * @see mm0.impl.Mm0PackageImpl#getClass10() - * @generated - */ - EClass CLASS10 = eINSTANCE.getClass10(); - - /** - * The meta object literal for the 'Ref Class3 2' reference feature. - * - * - * @generated - */ - EReference CLASS10__REF_CLASS3_2 = eINSTANCE.getClass10_RefClass3_2(); - - /** - * The meta object literal for the 'Att EInt 11' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EINT_11 = eINSTANCE.getClass10_AttEInt_11(); - - /** - * The meta object literal for the 'Att EBoolean 15' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EBOOLEAN_15 = eINSTANCE - .getClass10_AttEBoolean_15(); - - /** - * The meta object literal for the 'Att EInt 32' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EINT_32 = eINSTANCE.getClass10_AttEInt_32(); - - /** - * The meta object literal for the 'Att EInt 44' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EINT_44 = eINSTANCE.getClass10_AttEInt_44(); - - /** - * The meta object literal for the 'Att EBoolean 60' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EBOOLEAN_60 = eINSTANCE - .getClass10_AttEBoolean_60(); - - /** - * The meta object literal for the 'Att EInt 73' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EINT_73 = eINSTANCE.getClass10_AttEInt_73(); - - /** - * The meta object literal for the 'Att EBoolean 74' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EBOOLEAN_74 = eINSTANCE - .getClass10_AttEBoolean_74(); - - /** - * The meta object literal for the 'Att EBoolean 79' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EBOOLEAN_79 = eINSTANCE - .getClass10_AttEBoolean_79(); - - /** - * The meta object literal for the 'Att EInt 81' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EINT_81 = eINSTANCE.getClass10_AttEInt_81(); - - /** - * The meta object literal for the 'Att EInt 84' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EINT_84 = eINSTANCE.getClass10_AttEInt_84(); - - /** - * The meta object literal for the 'Ref Class10 112' reference feature. - * - * - * @generated - */ - EReference CLASS10__REF_CLASS10_112 = eINSTANCE - .getClass10_RefClass10_112(); - - /** - * The meta object literal for the 'Att EBoolean 118' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EBOOLEAN_118 = eINSTANCE - .getClass10_AttEBoolean_118(); - - /** - * The meta object literal for the 'Ref Class9 119' reference feature. - * - * - * @generated - */ - EReference CLASS10__REF_CLASS9_119 = eINSTANCE - .getClass10_RefClass9_119(); - - /** - * The meta object literal for the 'Att EInt 121' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EINT_121 = eINSTANCE.getClass10_AttEInt_121(); - - /** - * The meta object literal for the 'Att EBoolean 123' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EBOOLEAN_123 = eINSTANCE - .getClass10_AttEBoolean_123(); - - /** - * The meta object literal for the 'Ref Class4 124' reference feature. - * - * - * @generated - */ - EReference CLASS10__REF_CLASS4_124 = eINSTANCE - .getClass10_RefClass4_124(); - - /** - * The meta object literal for the 'Att EInt 125' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EINT_125 = eINSTANCE.getClass10_AttEInt_125(); - - /** - * The meta object literal for the 'Att EBoolean 128' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EBOOLEAN_128 = eINSTANCE - .getClass10_AttEBoolean_128(); - - /** - * The meta object literal for the 'Att EInt 144' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EINT_144 = eINSTANCE.getClass10_AttEInt_144(); - - /** - * The meta object literal for the 'Att EBoolean 152' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EBOOLEAN_152 = eINSTANCE - .getClass10_AttEBoolean_152(); - - /** - * The meta object literal for the 'Att EInt 173 m' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EINT_173_M = eINSTANCE - .getClass10_AttEInt_173_m(); - - /** - * The meta object literal for the 'Att EInt 183 m' attribute feature. - * - * - * @generated - */ - EAttribute CLASS10__ATT_EINT_183_M = eINSTANCE - .getClass10_AttEInt_183_m(); - - } - -} //Mm0Package diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/impl/Class0Impl.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/impl/Class0Impl.java deleted file mode 100644 index fa725ddd277a664608c52f39e3923b904040098f..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/impl/Class0Impl.java +++ /dev/null @@ -1,1254 +0,0 @@ -/** - */ -package mm0.impl; - -import fr.inria.diverse.cloning.cloner.emfextension.impl.AbstractShareableEObject; - -import mm0.Class0; -import mm0.Class5; -import mm0.Class9; -import mm0.Mm0Package; - -import org.eclipse.emf.common.notify.Notification; - -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 'Class0'. - * - *

- * The following features are implemented: - *

    - *
  • {@link mm0.impl.Class0Impl#isAttEBoolean_20 Att EBoolean 20}
  • - *
  • {@link mm0.impl.Class0Impl#getAttEInt_23 Att EInt 23}
  • - *
  • {@link mm0.impl.Class0Impl#getAttEInt_27 Att EInt 27}
  • - *
  • {@link mm0.impl.Class0Impl#getRefClass9_41 Ref Class9 41}
  • - *
  • {@link mm0.impl.Class0Impl#isAttEBoolean_49 Att EBoolean 49}
  • - *
  • {@link mm0.impl.Class0Impl#getAttEInt_53 Att EInt 53}
  • - *
  • {@link mm0.impl.Class0Impl#getAttEInt_63 Att EInt 63}
  • - *
  • {@link mm0.impl.Class0Impl#getAttEInt_66 Att EInt 66}
  • - *
  • {@link mm0.impl.Class0Impl#getAttEInt_72 Att EInt 72}
  • - *
  • {@link mm0.impl.Class0Impl#isAttEBoolean_90 Att EBoolean 90}
  • - *
  • {@link mm0.impl.Class0Impl#getAttEInt_94 Att EInt 94}
  • - *
  • {@link mm0.impl.Class0Impl#getAttEInt_107 Att EInt 107}
  • - *
  • {@link mm0.impl.Class0Impl#getAttEInt_108 Att EInt 108}
  • - *
  • {@link mm0.impl.Class0Impl#isAttEBoolean_116 Att EBoolean 116}
  • - *
  • {@link mm0.impl.Class0Impl#getAttEInt_120 Att EInt 120}
  • - *
  • {@link mm0.impl.Class0Impl#getAttEInt_133 Att EInt 133}
  • - *
  • {@link mm0.impl.Class0Impl#getAttEInt_135 Att EInt 135}
  • - *
  • {@link mm0.impl.Class0Impl#isAttEBoolean_149 Att EBoolean 149}
  • - *
  • {@link mm0.impl.Class0Impl#getRefClass5_172_m Ref Class5 172 m}
  • - *
  • {@link mm0.impl.Class0Impl#getRefClass9_180_m Ref Class9 180 m}
  • - *
- *

- * - * @generated - */ -public class Class0Impl extends AbstractShareableEObject implements Class0 { - /** - * The default value of the '{@link #isAttEBoolean_20() Att EBoolean 20}' attribute. - * - * - * @see #isAttEBoolean_20() - * @generated - * @ordered - */ - protected static final boolean ATT_EBOOLEAN_20_EDEFAULT = false; - - /** - * The cached value of the '{@link #isAttEBoolean_20() Att EBoolean 20}' attribute. - * - * - * @see #isAttEBoolean_20() - * @generated - * @ordered - */ - protected boolean attEBoolean_20 = ATT_EBOOLEAN_20_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_23() Att EInt 23}' attribute. - * - * - * @see #getAttEInt_23() - * @generated - * @ordered - */ - protected static final int ATT_EINT_23_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_23() Att EInt 23}' attribute. - * - * - * @see #getAttEInt_23() - * @generated - * @ordered - */ - protected int attEInt_23 = ATT_EINT_23_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_27() Att EInt 27}' attribute. - * - * - * @see #getAttEInt_27() - * @generated - * @ordered - */ - protected static final int ATT_EINT_27_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_27() Att EInt 27}' attribute. - * - * - * @see #getAttEInt_27() - * @generated - * @ordered - */ - protected int attEInt_27 = ATT_EINT_27_EDEFAULT; - - /** - * The cached value of the '{@link #getRefClass9_41() Ref Class9 41}' reference. - * - * - * @see #getRefClass9_41() - * @generated - * @ordered - */ - protected Class9 refClass9_41; - - /** - * The default value of the '{@link #isAttEBoolean_49() Att EBoolean 49}' attribute. - * - * - * @see #isAttEBoolean_49() - * @generated - * @ordered - */ - protected static final boolean ATT_EBOOLEAN_49_EDEFAULT = false; - - /** - * The cached value of the '{@link #isAttEBoolean_49() Att EBoolean 49}' attribute. - * - * - * @see #isAttEBoolean_49() - * @generated - * @ordered - */ - protected boolean attEBoolean_49 = ATT_EBOOLEAN_49_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_53() Att EInt 53}' attribute. - * - * - * @see #getAttEInt_53() - * @generated - * @ordered - */ - protected static final int ATT_EINT_53_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_53() Att EInt 53}' attribute. - * - * - * @see #getAttEInt_53() - * @generated - * @ordered - */ - protected int attEInt_53 = ATT_EINT_53_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_63() Att EInt 63}' attribute. - * - * - * @see #getAttEInt_63() - * @generated - * @ordered - */ - protected static final int ATT_EINT_63_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_63() Att EInt 63}' attribute. - * - * - * @see #getAttEInt_63() - * @generated - * @ordered - */ - protected int attEInt_63 = ATT_EINT_63_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_66() Att EInt 66}' attribute. - * - * - * @see #getAttEInt_66() - * @generated - * @ordered - */ - protected static final int ATT_EINT_66_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_66() Att EInt 66}' attribute. - * - * - * @see #getAttEInt_66() - * @generated - * @ordered - */ - protected int attEInt_66 = ATT_EINT_66_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_72() Att EInt 72}' attribute. - * - * - * @see #getAttEInt_72() - * @generated - * @ordered - */ - protected static final int ATT_EINT_72_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_72() Att EInt 72}' attribute. - * - * - * @see #getAttEInt_72() - * @generated - * @ordered - */ - protected int attEInt_72 = ATT_EINT_72_EDEFAULT; - - /** - * The default value of the '{@link #isAttEBoolean_90() Att EBoolean 90}' attribute. - * - * - * @see #isAttEBoolean_90() - * @generated - * @ordered - */ - protected static final boolean ATT_EBOOLEAN_90_EDEFAULT = false; - - /** - * The cached value of the '{@link #isAttEBoolean_90() Att EBoolean 90}' attribute. - * - * - * @see #isAttEBoolean_90() - * @generated - * @ordered - */ - protected boolean attEBoolean_90 = ATT_EBOOLEAN_90_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_94() Att EInt 94}' attribute. - * - * - * @see #getAttEInt_94() - * @generated - * @ordered - */ - protected static final int ATT_EINT_94_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_94() Att EInt 94}' attribute. - * - * - * @see #getAttEInt_94() - * @generated - * @ordered - */ - protected int attEInt_94 = ATT_EINT_94_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_107() Att EInt 107}' attribute. - * - * - * @see #getAttEInt_107() - * @generated - * @ordered - */ - protected static final int ATT_EINT_107_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_107() Att EInt 107}' attribute. - * - * - * @see #getAttEInt_107() - * @generated - * @ordered - */ - protected int attEInt_107 = ATT_EINT_107_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_108() Att EInt 108}' attribute. - * - * - * @see #getAttEInt_108() - * @generated - * @ordered - */ - protected static final int ATT_EINT_108_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_108() Att EInt 108}' attribute. - * - * - * @see #getAttEInt_108() - * @generated - * @ordered - */ - protected int attEInt_108 = ATT_EINT_108_EDEFAULT; - - /** - * The default value of the '{@link #isAttEBoolean_116() Att EBoolean 116}' attribute. - * - * - * @see #isAttEBoolean_116() - * @generated - * @ordered - */ - protected static final boolean ATT_EBOOLEAN_116_EDEFAULT = false; - - /** - * The cached value of the '{@link #isAttEBoolean_116() Att EBoolean 116}' attribute. - * - * - * @see #isAttEBoolean_116() - * @generated - * @ordered - */ - protected boolean attEBoolean_116 = ATT_EBOOLEAN_116_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_120() Att EInt 120}' attribute. - * - * - * @see #getAttEInt_120() - * @generated - * @ordered - */ - protected static final int ATT_EINT_120_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_120() Att EInt 120}' attribute. - * - * - * @see #getAttEInt_120() - * @generated - * @ordered - */ - protected int attEInt_120 = ATT_EINT_120_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_133() Att EInt 133}' attribute. - * - * - * @see #getAttEInt_133() - * @generated - * @ordered - */ - protected static final int ATT_EINT_133_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_133() Att EInt 133}' attribute. - * - * - * @see #getAttEInt_133() - * @generated - * @ordered - */ - protected int attEInt_133 = ATT_EINT_133_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_135() Att EInt 135}' attribute. - * - * - * @see #getAttEInt_135() - * @generated - * @ordered - */ - protected static final int ATT_EINT_135_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_135() Att EInt 135}' attribute. - * - * - * @see #getAttEInt_135() - * @generated - * @ordered - */ - protected int attEInt_135 = ATT_EINT_135_EDEFAULT; - - /** - * The default value of the '{@link #isAttEBoolean_149() Att EBoolean 149}' attribute. - * - * - * @see #isAttEBoolean_149() - * @generated - * @ordered - */ - protected static final boolean ATT_EBOOLEAN_149_EDEFAULT = false; - - /** - * The cached value of the '{@link #isAttEBoolean_149() Att EBoolean 149}' attribute. - * - * - * @see #isAttEBoolean_149() - * @generated - * @ordered - */ - protected boolean attEBoolean_149 = ATT_EBOOLEAN_149_EDEFAULT; - - /** - * The cached value of the '{@link #getRefClass5_172_m() Ref Class5 172 m}' reference. - * - * - * @see #getRefClass5_172_m() - * @generated - * @ordered - */ - protected Class5 refClass5_172_m; - - /** - * The cached value of the '{@link #getRefClass9_180_m() Ref Class9 180 m}' reference. - * - * - * @see #getRefClass9_180_m() - * @generated - * @ordered - */ - protected Class9 refClass9_180_m; - - /** - * - * - * @generated - */ - protected Class0Impl() { - super(); - } - - /** - * - * - * @generated - */ - @Override - protected EClass eStaticClass() { - return Mm0Package.Literals.CLASS0; - } - - /** - * - * - * @generated - */ - public boolean isAttEBoolean_20() { - return attEBoolean_20; - } - - /** - * - * - * @generated - */ - public void setAttEBoolean_20(boolean newAttEBoolean_20) { - boolean oldAttEBoolean_20 = attEBoolean_20; - attEBoolean_20 = newAttEBoolean_20; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EBOOLEAN_20, oldAttEBoolean_20, - attEBoolean_20)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_23() { - return attEInt_23; - } - - /** - * - * - * @generated - */ - public void setAttEInt_23(int newAttEInt_23) { - int oldAttEInt_23 = attEInt_23; - attEInt_23 = newAttEInt_23; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EINT_23, oldAttEInt_23, attEInt_23)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_27() { - return attEInt_27; - } - - /** - * - * - * @generated - */ - public void setAttEInt_27(int newAttEInt_27) { - int oldAttEInt_27 = attEInt_27; - attEInt_27 = newAttEInt_27; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EINT_27, oldAttEInt_27, attEInt_27)); - } - - /** - * - * - * @generated - */ - public Class9 getRefClass9_41() { - if (refClass9_41 != null && refClass9_41.eIsProxy()) { - InternalEObject oldRefClass9_41 = (InternalEObject) refClass9_41; - refClass9_41 = (Class9) eResolveProxy(oldRefClass9_41); - if (refClass9_41 != oldRefClass9_41) { - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.RESOLVE, - Mm0Package.CLASS0__REF_CLASS9_41, oldRefClass9_41, - refClass9_41)); - } - } - return refClass9_41; - } - - /** - * - * - * @generated - */ - public Class9 basicGetRefClass9_41() { - return refClass9_41; - } - - /** - * - * - * @generated - */ - public void setRefClass9_41(Class9 newRefClass9_41) { - Class9 oldRefClass9_41 = refClass9_41; - refClass9_41 = newRefClass9_41; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__REF_CLASS9_41, oldRefClass9_41, - refClass9_41)); - } - - /** - * - * - * @generated - */ - public boolean isAttEBoolean_49() { - return attEBoolean_49; - } - - /** - * - * - * @generated - */ - public void setAttEBoolean_49(boolean newAttEBoolean_49) { - boolean oldAttEBoolean_49 = attEBoolean_49; - attEBoolean_49 = newAttEBoolean_49; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EBOOLEAN_49, oldAttEBoolean_49, - attEBoolean_49)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_53() { - return attEInt_53; - } - - /** - * - * - * @generated - */ - public void setAttEInt_53(int newAttEInt_53) { - int oldAttEInt_53 = attEInt_53; - attEInt_53 = newAttEInt_53; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EINT_53, oldAttEInt_53, attEInt_53)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_63() { - return attEInt_63; - } - - /** - * - * - * @generated - */ - public void setAttEInt_63(int newAttEInt_63) { - int oldAttEInt_63 = attEInt_63; - attEInt_63 = newAttEInt_63; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EINT_63, oldAttEInt_63, attEInt_63)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_66() { - return attEInt_66; - } - - /** - * - * - * @generated - */ - public void setAttEInt_66(int newAttEInt_66) { - int oldAttEInt_66 = attEInt_66; - attEInt_66 = newAttEInt_66; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EINT_66, oldAttEInt_66, attEInt_66)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_72() { - return attEInt_72; - } - - /** - * - * - * @generated - */ - public void setAttEInt_72(int newAttEInt_72) { - int oldAttEInt_72 = attEInt_72; - attEInt_72 = newAttEInt_72; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EINT_72, oldAttEInt_72, attEInt_72)); - } - - /** - * - * - * @generated - */ - public boolean isAttEBoolean_90() { - return attEBoolean_90; - } - - /** - * - * - * @generated - */ - public void setAttEBoolean_90(boolean newAttEBoolean_90) { - boolean oldAttEBoolean_90 = attEBoolean_90; - attEBoolean_90 = newAttEBoolean_90; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EBOOLEAN_90, oldAttEBoolean_90, - attEBoolean_90)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_94() { - return attEInt_94; - } - - /** - * - * - * @generated - */ - public void setAttEInt_94(int newAttEInt_94) { - int oldAttEInt_94 = attEInt_94; - attEInt_94 = newAttEInt_94; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EINT_94, oldAttEInt_94, attEInt_94)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_107() { - return attEInt_107; - } - - /** - * - * - * @generated - */ - public void setAttEInt_107(int newAttEInt_107) { - int oldAttEInt_107 = attEInt_107; - attEInt_107 = newAttEInt_107; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EINT_107, oldAttEInt_107, - attEInt_107)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_108() { - return attEInt_108; - } - - /** - * - * - * @generated - */ - public void setAttEInt_108(int newAttEInt_108) { - int oldAttEInt_108 = attEInt_108; - attEInt_108 = newAttEInt_108; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EINT_108, oldAttEInt_108, - attEInt_108)); - } - - /** - * - * - * @generated - */ - public boolean isAttEBoolean_116() { - return attEBoolean_116; - } - - /** - * - * - * @generated - */ - public void setAttEBoolean_116(boolean newAttEBoolean_116) { - boolean oldAttEBoolean_116 = attEBoolean_116; - attEBoolean_116 = newAttEBoolean_116; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EBOOLEAN_116, oldAttEBoolean_116, - attEBoolean_116)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_120() { - return attEInt_120; - } - - /** - * - * - * @generated - */ - public void setAttEInt_120(int newAttEInt_120) { - int oldAttEInt_120 = attEInt_120; - attEInt_120 = newAttEInt_120; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EINT_120, oldAttEInt_120, - attEInt_120)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_133() { - return attEInt_133; - } - - /** - * - * - * @generated - */ - public void setAttEInt_133(int newAttEInt_133) { - int oldAttEInt_133 = attEInt_133; - attEInt_133 = newAttEInt_133; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EINT_133, oldAttEInt_133, - attEInt_133)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_135() { - return attEInt_135; - } - - /** - * - * - * @generated - */ - public void setAttEInt_135(int newAttEInt_135) { - int oldAttEInt_135 = attEInt_135; - attEInt_135 = newAttEInt_135; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EINT_135, oldAttEInt_135, - attEInt_135)); - } - - /** - * - * - * @generated - */ - public boolean isAttEBoolean_149() { - return attEBoolean_149; - } - - /** - * - * - * @generated - */ - public void setAttEBoolean_149(boolean newAttEBoolean_149) { - boolean oldAttEBoolean_149 = attEBoolean_149; - attEBoolean_149 = newAttEBoolean_149; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__ATT_EBOOLEAN_149, oldAttEBoolean_149, - attEBoolean_149)); - } - - /** - * - * - * @generated - */ - public Class5 getRefClass5_172_m() { - if (refClass5_172_m != null && refClass5_172_m.eIsProxy()) { - InternalEObject oldRefClass5_172_m = (InternalEObject) refClass5_172_m; - refClass5_172_m = (Class5) eResolveProxy(oldRefClass5_172_m); - if (refClass5_172_m != oldRefClass5_172_m) { - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.RESOLVE, - Mm0Package.CLASS0__REF_CLASS5_172_M, - oldRefClass5_172_m, refClass5_172_m)); - } - } - return refClass5_172_m; - } - - /** - * - * - * @generated - */ - public Class5 basicGetRefClass5_172_m() { - return refClass5_172_m; - } - - /** - * - * - * @generated - */ - public void setRefClass5_172_m(Class5 newRefClass5_172_m) { - Class5 oldRefClass5_172_m = refClass5_172_m; - refClass5_172_m = newRefClass5_172_m; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__REF_CLASS5_172_M, oldRefClass5_172_m, - refClass5_172_m)); - } - - /** - * - * - * @generated - */ - public Class9 getRefClass9_180_m() { - if (refClass9_180_m != null && refClass9_180_m.eIsProxy()) { - InternalEObject oldRefClass9_180_m = (InternalEObject) refClass9_180_m; - refClass9_180_m = (Class9) eResolveProxy(oldRefClass9_180_m); - if (refClass9_180_m != oldRefClass9_180_m) { - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.RESOLVE, - Mm0Package.CLASS0__REF_CLASS9_180_M, - oldRefClass9_180_m, refClass9_180_m)); - } - } - return refClass9_180_m; - } - - /** - * - * - * @generated - */ - public Class9 basicGetRefClass9_180_m() { - return refClass9_180_m; - } - - /** - * - * - * @generated - */ - public void setRefClass9_180_m(Class9 newRefClass9_180_m) { - Class9 oldRefClass9_180_m = refClass9_180_m; - refClass9_180_m = newRefClass9_180_m; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS0__REF_CLASS9_180_M, oldRefClass9_180_m, - refClass9_180_m)); - } - - /** - * - * - * @generated - */ - @Override - public Object eGet(int featureID, boolean resolve, boolean coreType) { - switch (featureID) { - case Mm0Package.CLASS0__ATT_EBOOLEAN_20: - return isAttEBoolean_20(); - case Mm0Package.CLASS0__ATT_EINT_23: - return getAttEInt_23(); - case Mm0Package.CLASS0__ATT_EINT_27: - return getAttEInt_27(); - case Mm0Package.CLASS0__REF_CLASS9_41: - if (resolve) - return getRefClass9_41(); - return basicGetRefClass9_41(); - case Mm0Package.CLASS0__ATT_EBOOLEAN_49: - return isAttEBoolean_49(); - case Mm0Package.CLASS0__ATT_EINT_53: - return getAttEInt_53(); - case Mm0Package.CLASS0__ATT_EINT_63: - return getAttEInt_63(); - case Mm0Package.CLASS0__ATT_EINT_66: - return getAttEInt_66(); - case Mm0Package.CLASS0__ATT_EINT_72: - return getAttEInt_72(); - case Mm0Package.CLASS0__ATT_EBOOLEAN_90: - return isAttEBoolean_90(); - case Mm0Package.CLASS0__ATT_EINT_94: - return getAttEInt_94(); - case Mm0Package.CLASS0__ATT_EINT_107: - return getAttEInt_107(); - case Mm0Package.CLASS0__ATT_EINT_108: - return getAttEInt_108(); - case Mm0Package.CLASS0__ATT_EBOOLEAN_116: - return isAttEBoolean_116(); - case Mm0Package.CLASS0__ATT_EINT_120: - return getAttEInt_120(); - case Mm0Package.CLASS0__ATT_EINT_133: - return getAttEInt_133(); - case Mm0Package.CLASS0__ATT_EINT_135: - return getAttEInt_135(); - case Mm0Package.CLASS0__ATT_EBOOLEAN_149: - return isAttEBoolean_149(); - case Mm0Package.CLASS0__REF_CLASS5_172_M: - if (resolve) - return getRefClass5_172_m(); - return basicGetRefClass5_172_m(); - case Mm0Package.CLASS0__REF_CLASS9_180_M: - if (resolve) - return getRefClass9_180_m(); - return basicGetRefClass9_180_m(); - } - return super.eGet(featureID, resolve, coreType); - } - - /** - * - * - * @generated - */ - @Override - public void eSet(int featureID, Object newValue) { - switch (featureID) { - case Mm0Package.CLASS0__ATT_EBOOLEAN_20: - setAttEBoolean_20((Boolean) newValue); - return; - case Mm0Package.CLASS0__ATT_EINT_23: - setAttEInt_23((Integer) newValue); - return; - case Mm0Package.CLASS0__ATT_EINT_27: - setAttEInt_27((Integer) newValue); - return; - case Mm0Package.CLASS0__REF_CLASS9_41: - setRefClass9_41((Class9) newValue); - return; - case Mm0Package.CLASS0__ATT_EBOOLEAN_49: - setAttEBoolean_49((Boolean) newValue); - return; - case Mm0Package.CLASS0__ATT_EINT_53: - setAttEInt_53((Integer) newValue); - return; - case Mm0Package.CLASS0__ATT_EINT_63: - setAttEInt_63((Integer) newValue); - return; - case Mm0Package.CLASS0__ATT_EINT_66: - setAttEInt_66((Integer) newValue); - return; - case Mm0Package.CLASS0__ATT_EINT_72: - setAttEInt_72((Integer) newValue); - return; - case Mm0Package.CLASS0__ATT_EBOOLEAN_90: - setAttEBoolean_90((Boolean) newValue); - return; - case Mm0Package.CLASS0__ATT_EINT_94: - setAttEInt_94((Integer) newValue); - return; - case Mm0Package.CLASS0__ATT_EINT_107: - setAttEInt_107((Integer) newValue); - return; - case Mm0Package.CLASS0__ATT_EINT_108: - setAttEInt_108((Integer) newValue); - return; - case Mm0Package.CLASS0__ATT_EBOOLEAN_116: - setAttEBoolean_116((Boolean) newValue); - return; - case Mm0Package.CLASS0__ATT_EINT_120: - setAttEInt_120((Integer) newValue); - return; - case Mm0Package.CLASS0__ATT_EINT_133: - setAttEInt_133((Integer) newValue); - return; - case Mm0Package.CLASS0__ATT_EINT_135: - setAttEInt_135((Integer) newValue); - return; - case Mm0Package.CLASS0__ATT_EBOOLEAN_149: - setAttEBoolean_149((Boolean) newValue); - return; - case Mm0Package.CLASS0__REF_CLASS5_172_M: - setRefClass5_172_m((Class5) newValue); - return; - case Mm0Package.CLASS0__REF_CLASS9_180_M: - setRefClass9_180_m((Class9) newValue); - return; - } - super.eSet(featureID, newValue); - } - - /** - * - * - * @generated - */ - @Override - public void eUnset(int featureID) { - switch (featureID) { - case Mm0Package.CLASS0__ATT_EBOOLEAN_20: - setAttEBoolean_20(ATT_EBOOLEAN_20_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EINT_23: - setAttEInt_23(ATT_EINT_23_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EINT_27: - setAttEInt_27(ATT_EINT_27_EDEFAULT); - return; - case Mm0Package.CLASS0__REF_CLASS9_41: - setRefClass9_41((Class9) null); - return; - case Mm0Package.CLASS0__ATT_EBOOLEAN_49: - setAttEBoolean_49(ATT_EBOOLEAN_49_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EINT_53: - setAttEInt_53(ATT_EINT_53_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EINT_63: - setAttEInt_63(ATT_EINT_63_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EINT_66: - setAttEInt_66(ATT_EINT_66_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EINT_72: - setAttEInt_72(ATT_EINT_72_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EBOOLEAN_90: - setAttEBoolean_90(ATT_EBOOLEAN_90_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EINT_94: - setAttEInt_94(ATT_EINT_94_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EINT_107: - setAttEInt_107(ATT_EINT_107_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EINT_108: - setAttEInt_108(ATT_EINT_108_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EBOOLEAN_116: - setAttEBoolean_116(ATT_EBOOLEAN_116_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EINT_120: - setAttEInt_120(ATT_EINT_120_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EINT_133: - setAttEInt_133(ATT_EINT_133_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EINT_135: - setAttEInt_135(ATT_EINT_135_EDEFAULT); - return; - case Mm0Package.CLASS0__ATT_EBOOLEAN_149: - setAttEBoolean_149(ATT_EBOOLEAN_149_EDEFAULT); - return; - case Mm0Package.CLASS0__REF_CLASS5_172_M: - setRefClass5_172_m((Class5) null); - return; - case Mm0Package.CLASS0__REF_CLASS9_180_M: - setRefClass9_180_m((Class9) null); - return; - } - super.eUnset(featureID); - } - - /** - * - * - * @generated - */ - @Override - public boolean eIsSet(int featureID) { - switch (featureID) { - case Mm0Package.CLASS0__ATT_EBOOLEAN_20: - return attEBoolean_20 != ATT_EBOOLEAN_20_EDEFAULT; - case Mm0Package.CLASS0__ATT_EINT_23: - return attEInt_23 != ATT_EINT_23_EDEFAULT; - case Mm0Package.CLASS0__ATT_EINT_27: - return attEInt_27 != ATT_EINT_27_EDEFAULT; - case Mm0Package.CLASS0__REF_CLASS9_41: - return refClass9_41 != null; - case Mm0Package.CLASS0__ATT_EBOOLEAN_49: - return attEBoolean_49 != ATT_EBOOLEAN_49_EDEFAULT; - case Mm0Package.CLASS0__ATT_EINT_53: - return attEInt_53 != ATT_EINT_53_EDEFAULT; - case Mm0Package.CLASS0__ATT_EINT_63: - return attEInt_63 != ATT_EINT_63_EDEFAULT; - case Mm0Package.CLASS0__ATT_EINT_66: - return attEInt_66 != ATT_EINT_66_EDEFAULT; - case Mm0Package.CLASS0__ATT_EINT_72: - return attEInt_72 != ATT_EINT_72_EDEFAULT; - case Mm0Package.CLASS0__ATT_EBOOLEAN_90: - return attEBoolean_90 != ATT_EBOOLEAN_90_EDEFAULT; - case Mm0Package.CLASS0__ATT_EINT_94: - return attEInt_94 != ATT_EINT_94_EDEFAULT; - case Mm0Package.CLASS0__ATT_EINT_107: - return attEInt_107 != ATT_EINT_107_EDEFAULT; - case Mm0Package.CLASS0__ATT_EINT_108: - return attEInt_108 != ATT_EINT_108_EDEFAULT; - case Mm0Package.CLASS0__ATT_EBOOLEAN_116: - return attEBoolean_116 != ATT_EBOOLEAN_116_EDEFAULT; - case Mm0Package.CLASS0__ATT_EINT_120: - return attEInt_120 != ATT_EINT_120_EDEFAULT; - case Mm0Package.CLASS0__ATT_EINT_133: - return attEInt_133 != ATT_EINT_133_EDEFAULT; - case Mm0Package.CLASS0__ATT_EINT_135: - return attEInt_135 != ATT_EINT_135_EDEFAULT; - case Mm0Package.CLASS0__ATT_EBOOLEAN_149: - return attEBoolean_149 != ATT_EBOOLEAN_149_EDEFAULT; - case Mm0Package.CLASS0__REF_CLASS5_172_M: - return refClass5_172_m != null; - case Mm0Package.CLASS0__REF_CLASS9_180_M: - return refClass9_180_m != null; - } - return super.eIsSet(featureID); - } - - /** - * - * - * @generated - */ - @Override - public String toString() { - if (eIsProxy()) - return super.toString(); - - StringBuffer result = new StringBuffer(super.toString()); - result.append(" (attEBoolean_20: "); - result.append(attEBoolean_20); - result.append(", attEInt_23: "); - result.append(attEInt_23); - result.append(", attEInt_27: "); - result.append(attEInt_27); - result.append(", attEBoolean_49: "); - result.append(attEBoolean_49); - result.append(", attEInt_53: "); - result.append(attEInt_53); - result.append(", attEInt_63: "); - result.append(attEInt_63); - result.append(", attEInt_66: "); - result.append(attEInt_66); - result.append(", attEInt_72: "); - result.append(attEInt_72); - result.append(", attEBoolean_90: "); - result.append(attEBoolean_90); - result.append(", attEInt_94: "); - result.append(attEInt_94); - result.append(", attEInt_107: "); - result.append(attEInt_107); - result.append(", attEInt_108: "); - result.append(attEInt_108); - result.append(", attEBoolean_116: "); - result.append(attEBoolean_116); - result.append(", attEInt_120: "); - result.append(attEInt_120); - result.append(", attEInt_133: "); - result.append(attEInt_133); - result.append(", attEInt_135: "); - result.append(attEInt_135); - result.append(", attEBoolean_149: "); - result.append(attEBoolean_149); - result.append(')'); - return result.toString(); - } - -} //Class0Impl diff --git a/cloningBenchmarkMaterial5921503524522529258/src/mm0/impl/Class10Impl.java b/cloningBenchmarkMaterial5921503524522529258/src/mm0/impl/Class10Impl.java deleted file mode 100644 index fe414abe05bab93e4f1cb450f36981041b5aab87..0000000000000000000000000000000000000000 --- a/cloningBenchmarkMaterial5921503524522529258/src/mm0/impl/Class10Impl.java +++ /dev/null @@ -1,1433 +0,0 @@ -/** - */ -package mm0.impl; - -import fr.inria.diverse.cloning.cloner.emfextension.impl.AbstractShareableEObject; - -import mm0.Class10; -import mm0.Class3; -import mm0.Class4; -import mm0.Class9; -import mm0.Mm0Package; - -import org.eclipse.emf.common.notify.Notification; - -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 'Class10'. - * - *

- * The following features are implemented: - *

    - *
  • {@link mm0.impl.Class10Impl#getRefClass3_2 Ref Class3 2}
  • - *
  • {@link mm0.impl.Class10Impl#getAttEInt_11 Att EInt 11}
  • - *
  • {@link mm0.impl.Class10Impl#isAttEBoolean_15 Att EBoolean 15}
  • - *
  • {@link mm0.impl.Class10Impl#getAttEInt_32 Att EInt 32}
  • - *
  • {@link mm0.impl.Class10Impl#getAttEInt_44 Att EInt 44}
  • - *
  • {@link mm0.impl.Class10Impl#isAttEBoolean_60 Att EBoolean 60}
  • - *
  • {@link mm0.impl.Class10Impl#getAttEInt_73 Att EInt 73}
  • - *
  • {@link mm0.impl.Class10Impl#isAttEBoolean_74 Att EBoolean 74}
  • - *
  • {@link mm0.impl.Class10Impl#isAttEBoolean_79 Att EBoolean 79}
  • - *
  • {@link mm0.impl.Class10Impl#getAttEInt_81 Att EInt 81}
  • - *
  • {@link mm0.impl.Class10Impl#getAttEInt_84 Att EInt 84}
  • - *
  • {@link mm0.impl.Class10Impl#getRefClass10_112 Ref Class10 112}
  • - *
  • {@link mm0.impl.Class10Impl#isAttEBoolean_118 Att EBoolean 118}
  • - *
  • {@link mm0.impl.Class10Impl#getRefClass9_119 Ref Class9 119}
  • - *
  • {@link mm0.impl.Class10Impl#getAttEInt_121 Att EInt 121}
  • - *
  • {@link mm0.impl.Class10Impl#isAttEBoolean_123 Att EBoolean 123}
  • - *
  • {@link mm0.impl.Class10Impl#getRefClass4_124 Ref Class4 124}
  • - *
  • {@link mm0.impl.Class10Impl#getAttEInt_125 Att EInt 125}
  • - *
  • {@link mm0.impl.Class10Impl#isAttEBoolean_128 Att EBoolean 128}
  • - *
  • {@link mm0.impl.Class10Impl#getAttEInt_144 Att EInt 144}
  • - *
  • {@link mm0.impl.Class10Impl#isAttEBoolean_152 Att EBoolean 152}
  • - *
  • {@link mm0.impl.Class10Impl#getAttEInt_173_m Att EInt 173 m}
  • - *
  • {@link mm0.impl.Class10Impl#getAttEInt_183_m Att EInt 183 m}
  • - *
- *

- * - * @generated - */ -public class Class10Impl extends AbstractShareableEObject implements Class10 { - /** - * The cached value of the '{@link #getRefClass3_2() Ref Class3 2}' reference. - * - * - * @see #getRefClass3_2() - * @generated - * @ordered - */ - protected Class3 refClass3_2; - - /** - * The default value of the '{@link #getAttEInt_11() Att EInt 11}' attribute. - * - * - * @see #getAttEInt_11() - * @generated - * @ordered - */ - protected static final int ATT_EINT_11_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_11() Att EInt 11}' attribute. - * - * - * @see #getAttEInt_11() - * @generated - * @ordered - */ - protected int attEInt_11 = ATT_EINT_11_EDEFAULT; - - /** - * The default value of the '{@link #isAttEBoolean_15() Att EBoolean 15}' attribute. - * - * - * @see #isAttEBoolean_15() - * @generated - * @ordered - */ - protected static final boolean ATT_EBOOLEAN_15_EDEFAULT = false; - - /** - * The cached value of the '{@link #isAttEBoolean_15() Att EBoolean 15}' attribute. - * - * - * @see #isAttEBoolean_15() - * @generated - * @ordered - */ - protected boolean attEBoolean_15 = ATT_EBOOLEAN_15_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_32() Att EInt 32}' attribute. - * - * - * @see #getAttEInt_32() - * @generated - * @ordered - */ - protected static final int ATT_EINT_32_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_32() Att EInt 32}' attribute. - * - * - * @see #getAttEInt_32() - * @generated - * @ordered - */ - protected int attEInt_32 = ATT_EINT_32_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_44() Att EInt 44}' attribute. - * - * - * @see #getAttEInt_44() - * @generated - * @ordered - */ - protected static final int ATT_EINT_44_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_44() Att EInt 44}' attribute. - * - * - * @see #getAttEInt_44() - * @generated - * @ordered - */ - protected int attEInt_44 = ATT_EINT_44_EDEFAULT; - - /** - * The default value of the '{@link #isAttEBoolean_60() Att EBoolean 60}' attribute. - * - * - * @see #isAttEBoolean_60() - * @generated - * @ordered - */ - protected static final boolean ATT_EBOOLEAN_60_EDEFAULT = false; - - /** - * The cached value of the '{@link #isAttEBoolean_60() Att EBoolean 60}' attribute. - * - * - * @see #isAttEBoolean_60() - * @generated - * @ordered - */ - protected boolean attEBoolean_60 = ATT_EBOOLEAN_60_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_73() Att EInt 73}' attribute. - * - * - * @see #getAttEInt_73() - * @generated - * @ordered - */ - protected static final int ATT_EINT_73_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_73() Att EInt 73}' attribute. - * - * - * @see #getAttEInt_73() - * @generated - * @ordered - */ - protected int attEInt_73 = ATT_EINT_73_EDEFAULT; - - /** - * The default value of the '{@link #isAttEBoolean_74() Att EBoolean 74}' attribute. - * - * - * @see #isAttEBoolean_74() - * @generated - * @ordered - */ - protected static final boolean ATT_EBOOLEAN_74_EDEFAULT = false; - - /** - * The cached value of the '{@link #isAttEBoolean_74() Att EBoolean 74}' attribute. - * - * - * @see #isAttEBoolean_74() - * @generated - * @ordered - */ - protected boolean attEBoolean_74 = ATT_EBOOLEAN_74_EDEFAULT; - - /** - * The default value of the '{@link #isAttEBoolean_79() Att EBoolean 79}' attribute. - * - * - * @see #isAttEBoolean_79() - * @generated - * @ordered - */ - protected static final boolean ATT_EBOOLEAN_79_EDEFAULT = false; - - /** - * The cached value of the '{@link #isAttEBoolean_79() Att EBoolean 79}' attribute. - * - * - * @see #isAttEBoolean_79() - * @generated - * @ordered - */ - protected boolean attEBoolean_79 = ATT_EBOOLEAN_79_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_81() Att EInt 81}' attribute. - * - * - * @see #getAttEInt_81() - * @generated - * @ordered - */ - protected static final int ATT_EINT_81_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_81() Att EInt 81}' attribute. - * - * - * @see #getAttEInt_81() - * @generated - * @ordered - */ - protected int attEInt_81 = ATT_EINT_81_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_84() Att EInt 84}' attribute. - * - * - * @see #getAttEInt_84() - * @generated - * @ordered - */ - protected static final int ATT_EINT_84_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_84() Att EInt 84}' attribute. - * - * - * @see #getAttEInt_84() - * @generated - * @ordered - */ - protected int attEInt_84 = ATT_EINT_84_EDEFAULT; - - /** - * The cached value of the '{@link #getRefClass10_112() Ref Class10 112}' reference. - * - * - * @see #getRefClass10_112() - * @generated - * @ordered - */ - protected Class10 refClass10_112; - - /** - * The default value of the '{@link #isAttEBoolean_118() Att EBoolean 118}' attribute. - * - * - * @see #isAttEBoolean_118() - * @generated - * @ordered - */ - protected static final boolean ATT_EBOOLEAN_118_EDEFAULT = false; - - /** - * The cached value of the '{@link #isAttEBoolean_118() Att EBoolean 118}' attribute. - * - * - * @see #isAttEBoolean_118() - * @generated - * @ordered - */ - protected boolean attEBoolean_118 = ATT_EBOOLEAN_118_EDEFAULT; - - /** - * The cached value of the '{@link #getRefClass9_119() Ref Class9 119}' reference. - * - * - * @see #getRefClass9_119() - * @generated - * @ordered - */ - protected Class9 refClass9_119; - - /** - * The default value of the '{@link #getAttEInt_121() Att EInt 121}' attribute. - * - * - * @see #getAttEInt_121() - * @generated - * @ordered - */ - protected static final int ATT_EINT_121_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_121() Att EInt 121}' attribute. - * - * - * @see #getAttEInt_121() - * @generated - * @ordered - */ - protected int attEInt_121 = ATT_EINT_121_EDEFAULT; - - /** - * The default value of the '{@link #isAttEBoolean_123() Att EBoolean 123}' attribute. - * - * - * @see #isAttEBoolean_123() - * @generated - * @ordered - */ - protected static final boolean ATT_EBOOLEAN_123_EDEFAULT = false; - - /** - * The cached value of the '{@link #isAttEBoolean_123() Att EBoolean 123}' attribute. - * - * - * @see #isAttEBoolean_123() - * @generated - * @ordered - */ - protected boolean attEBoolean_123 = ATT_EBOOLEAN_123_EDEFAULT; - - /** - * The cached value of the '{@link #getRefClass4_124() Ref Class4 124}' reference. - * - * - * @see #getRefClass4_124() - * @generated - * @ordered - */ - protected Class4 refClass4_124; - - /** - * The default value of the '{@link #getAttEInt_125() Att EInt 125}' attribute. - * - * - * @see #getAttEInt_125() - * @generated - * @ordered - */ - protected static final int ATT_EINT_125_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_125() Att EInt 125}' attribute. - * - * - * @see #getAttEInt_125() - * @generated - * @ordered - */ - protected int attEInt_125 = ATT_EINT_125_EDEFAULT; - - /** - * The default value of the '{@link #isAttEBoolean_128() Att EBoolean 128}' attribute. - * - * - * @see #isAttEBoolean_128() - * @generated - * @ordered - */ - protected static final boolean ATT_EBOOLEAN_128_EDEFAULT = false; - - /** - * The cached value of the '{@link #isAttEBoolean_128() Att EBoolean 128}' attribute. - * - * - * @see #isAttEBoolean_128() - * @generated - * @ordered - */ - protected boolean attEBoolean_128 = ATT_EBOOLEAN_128_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_144() Att EInt 144}' attribute. - * - * - * @see #getAttEInt_144() - * @generated - * @ordered - */ - protected static final int ATT_EINT_144_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_144() Att EInt 144}' attribute. - * - * - * @see #getAttEInt_144() - * @generated - * @ordered - */ - protected int attEInt_144 = ATT_EINT_144_EDEFAULT; - - /** - * The default value of the '{@link #isAttEBoolean_152() Att EBoolean 152}' attribute. - * - * - * @see #isAttEBoolean_152() - * @generated - * @ordered - */ - protected static final boolean ATT_EBOOLEAN_152_EDEFAULT = false; - - /** - * The cached value of the '{@link #isAttEBoolean_152() Att EBoolean 152}' attribute. - * - * - * @see #isAttEBoolean_152() - * @generated - * @ordered - */ - protected boolean attEBoolean_152 = ATT_EBOOLEAN_152_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_173_m() Att EInt 173 m}' attribute. - * - * - * @see #getAttEInt_173_m() - * @generated - * @ordered - */ - protected static final int ATT_EINT_173_M_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_173_m() Att EInt 173 m}' attribute. - * - * - * @see #getAttEInt_173_m() - * @generated - * @ordered - */ - protected int attEInt_173_m = ATT_EINT_173_M_EDEFAULT; - - /** - * The default value of the '{@link #getAttEInt_183_m() Att EInt 183 m}' attribute. - * - * - * @see #getAttEInt_183_m() - * @generated - * @ordered - */ - protected static final int ATT_EINT_183_M_EDEFAULT = 0; - - /** - * The cached value of the '{@link #getAttEInt_183_m() Att EInt 183 m}' attribute. - * - * - * @see #getAttEInt_183_m() - * @generated - * @ordered - */ - protected int attEInt_183_m = ATT_EINT_183_M_EDEFAULT; - - /** - * - * - * @generated - */ - protected Class10Impl() { - super(); - } - - /** - * - * - * @generated - */ - @Override - protected EClass eStaticClass() { - return Mm0Package.Literals.CLASS10; - } - - /** - * - * - * @generated - */ - public Class3 getRefClass3_2() { - if (refClass3_2 != null && refClass3_2.eIsProxy()) { - InternalEObject oldRefClass3_2 = (InternalEObject) refClass3_2; - refClass3_2 = (Class3) eResolveProxy(oldRefClass3_2); - if (refClass3_2 != oldRefClass3_2) { - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.RESOLVE, - Mm0Package.CLASS10__REF_CLASS3_2, oldRefClass3_2, - refClass3_2)); - } - } - return refClass3_2; - } - - /** - * - * - * @generated - */ - public Class3 basicGetRefClass3_2() { - return refClass3_2; - } - - /** - * - * - * @generated - */ - public void setRefClass3_2(Class3 newRefClass3_2) { - Class3 oldRefClass3_2 = refClass3_2; - refClass3_2 = newRefClass3_2; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__REF_CLASS3_2, oldRefClass3_2, - refClass3_2)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_11() { - return attEInt_11; - } - - /** - * - * - * @generated - */ - public void setAttEInt_11(int newAttEInt_11) { - int oldAttEInt_11 = attEInt_11; - attEInt_11 = newAttEInt_11; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EINT_11, oldAttEInt_11, attEInt_11)); - } - - /** - * - * - * @generated - */ - public boolean isAttEBoolean_15() { - return attEBoolean_15; - } - - /** - * - * - * @generated - */ - public void setAttEBoolean_15(boolean newAttEBoolean_15) { - boolean oldAttEBoolean_15 = attEBoolean_15; - attEBoolean_15 = newAttEBoolean_15; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EBOOLEAN_15, oldAttEBoolean_15, - attEBoolean_15)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_32() { - return attEInt_32; - } - - /** - * - * - * @generated - */ - public void setAttEInt_32(int newAttEInt_32) { - int oldAttEInt_32 = attEInt_32; - attEInt_32 = newAttEInt_32; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EINT_32, oldAttEInt_32, attEInt_32)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_44() { - return attEInt_44; - } - - /** - * - * - * @generated - */ - public void setAttEInt_44(int newAttEInt_44) { - int oldAttEInt_44 = attEInt_44; - attEInt_44 = newAttEInt_44; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EINT_44, oldAttEInt_44, attEInt_44)); - } - - /** - * - * - * @generated - */ - public boolean isAttEBoolean_60() { - return attEBoolean_60; - } - - /** - * - * - * @generated - */ - public void setAttEBoolean_60(boolean newAttEBoolean_60) { - boolean oldAttEBoolean_60 = attEBoolean_60; - attEBoolean_60 = newAttEBoolean_60; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EBOOLEAN_60, oldAttEBoolean_60, - attEBoolean_60)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_73() { - return attEInt_73; - } - - /** - * - * - * @generated - */ - public void setAttEInt_73(int newAttEInt_73) { - int oldAttEInt_73 = attEInt_73; - attEInt_73 = newAttEInt_73; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EINT_73, oldAttEInt_73, attEInt_73)); - } - - /** - * - * - * @generated - */ - public boolean isAttEBoolean_74() { - return attEBoolean_74; - } - - /** - * - * - * @generated - */ - public void setAttEBoolean_74(boolean newAttEBoolean_74) { - boolean oldAttEBoolean_74 = attEBoolean_74; - attEBoolean_74 = newAttEBoolean_74; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EBOOLEAN_74, oldAttEBoolean_74, - attEBoolean_74)); - } - - /** - * - * - * @generated - */ - public boolean isAttEBoolean_79() { - return attEBoolean_79; - } - - /** - * - * - * @generated - */ - public void setAttEBoolean_79(boolean newAttEBoolean_79) { - boolean oldAttEBoolean_79 = attEBoolean_79; - attEBoolean_79 = newAttEBoolean_79; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EBOOLEAN_79, oldAttEBoolean_79, - attEBoolean_79)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_81() { - return attEInt_81; - } - - /** - * - * - * @generated - */ - public void setAttEInt_81(int newAttEInt_81) { - int oldAttEInt_81 = attEInt_81; - attEInt_81 = newAttEInt_81; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EINT_81, oldAttEInt_81, attEInt_81)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_84() { - return attEInt_84; - } - - /** - * - * - * @generated - */ - public void setAttEInt_84(int newAttEInt_84) { - int oldAttEInt_84 = attEInt_84; - attEInt_84 = newAttEInt_84; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EINT_84, oldAttEInt_84, attEInt_84)); - } - - /** - * - * - * @generated - */ - public Class10 getRefClass10_112() { - if (refClass10_112 != null && refClass10_112.eIsProxy()) { - InternalEObject oldRefClass10_112 = (InternalEObject) refClass10_112; - refClass10_112 = (Class10) eResolveProxy(oldRefClass10_112); - if (refClass10_112 != oldRefClass10_112) { - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.RESOLVE, - Mm0Package.CLASS10__REF_CLASS10_112, - oldRefClass10_112, refClass10_112)); - } - } - return refClass10_112; - } - - /** - * - * - * @generated - */ - public Class10 basicGetRefClass10_112() { - return refClass10_112; - } - - /** - * - * - * @generated - */ - public void setRefClass10_112(Class10 newRefClass10_112) { - Class10 oldRefClass10_112 = refClass10_112; - refClass10_112 = newRefClass10_112; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__REF_CLASS10_112, oldRefClass10_112, - refClass10_112)); - } - - /** - * - * - * @generated - */ - public boolean isAttEBoolean_118() { - return attEBoolean_118; - } - - /** - * - * - * @generated - */ - public void setAttEBoolean_118(boolean newAttEBoolean_118) { - boolean oldAttEBoolean_118 = attEBoolean_118; - attEBoolean_118 = newAttEBoolean_118; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EBOOLEAN_118, oldAttEBoolean_118, - attEBoolean_118)); - } - - /** - * - * - * @generated - */ - public Class9 getRefClass9_119() { - if (refClass9_119 != null && refClass9_119.eIsProxy()) { - InternalEObject oldRefClass9_119 = (InternalEObject) refClass9_119; - refClass9_119 = (Class9) eResolveProxy(oldRefClass9_119); - if (refClass9_119 != oldRefClass9_119) { - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.RESOLVE, - Mm0Package.CLASS10__REF_CLASS9_119, - oldRefClass9_119, refClass9_119)); - } - } - return refClass9_119; - } - - /** - * - * - * @generated - */ - public Class9 basicGetRefClass9_119() { - return refClass9_119; - } - - /** - * - * - * @generated - */ - public void setRefClass9_119(Class9 newRefClass9_119) { - Class9 oldRefClass9_119 = refClass9_119; - refClass9_119 = newRefClass9_119; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__REF_CLASS9_119, oldRefClass9_119, - refClass9_119)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_121() { - return attEInt_121; - } - - /** - * - * - * @generated - */ - public void setAttEInt_121(int newAttEInt_121) { - int oldAttEInt_121 = attEInt_121; - attEInt_121 = newAttEInt_121; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EINT_121, oldAttEInt_121, - attEInt_121)); - } - - /** - * - * - * @generated - */ - public boolean isAttEBoolean_123() { - return attEBoolean_123; - } - - /** - * - * - * @generated - */ - public void setAttEBoolean_123(boolean newAttEBoolean_123) { - boolean oldAttEBoolean_123 = attEBoolean_123; - attEBoolean_123 = newAttEBoolean_123; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EBOOLEAN_123, oldAttEBoolean_123, - attEBoolean_123)); - } - - /** - * - * - * @generated - */ - public Class4 getRefClass4_124() { - if (refClass4_124 != null && refClass4_124.eIsProxy()) { - InternalEObject oldRefClass4_124 = (InternalEObject) refClass4_124; - refClass4_124 = (Class4) eResolveProxy(oldRefClass4_124); - if (refClass4_124 != oldRefClass4_124) { - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.RESOLVE, - Mm0Package.CLASS10__REF_CLASS4_124, - oldRefClass4_124, refClass4_124)); - } - } - return refClass4_124; - } - - /** - * - * - * @generated - */ - public Class4 basicGetRefClass4_124() { - return refClass4_124; - } - - /** - * - * - * @generated - */ - public void setRefClass4_124(Class4 newRefClass4_124) { - Class4 oldRefClass4_124 = refClass4_124; - refClass4_124 = newRefClass4_124; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__REF_CLASS4_124, oldRefClass4_124, - refClass4_124)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_125() { - return attEInt_125; - } - - /** - * - * - * @generated - */ - public void setAttEInt_125(int newAttEInt_125) { - int oldAttEInt_125 = attEInt_125; - attEInt_125 = newAttEInt_125; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EINT_125, oldAttEInt_125, - attEInt_125)); - } - - /** - * - * - * @generated - */ - public boolean isAttEBoolean_128() { - return attEBoolean_128; - } - - /** - * - * - * @generated - */ - public void setAttEBoolean_128(boolean newAttEBoolean_128) { - boolean oldAttEBoolean_128 = attEBoolean_128; - attEBoolean_128 = newAttEBoolean_128; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EBOOLEAN_128, oldAttEBoolean_128, - attEBoolean_128)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_144() { - return attEInt_144; - } - - /** - * - * - * @generated - */ - public void setAttEInt_144(int newAttEInt_144) { - int oldAttEInt_144 = attEInt_144; - attEInt_144 = newAttEInt_144; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EINT_144, oldAttEInt_144, - attEInt_144)); - } - - /** - * - * - * @generated - */ - public boolean isAttEBoolean_152() { - return attEBoolean_152; - } - - /** - * - * - * @generated - */ - public void setAttEBoolean_152(boolean newAttEBoolean_152) { - boolean oldAttEBoolean_152 = attEBoolean_152; - attEBoolean_152 = newAttEBoolean_152; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EBOOLEAN_152, oldAttEBoolean_152, - attEBoolean_152)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_173_m() { - return attEInt_173_m; - } - - /** - * - * - * @generated - */ - public void setAttEInt_173_m(int newAttEInt_173_m) { - int oldAttEInt_173_m = attEInt_173_m; - attEInt_173_m = newAttEInt_173_m; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EINT_173_M, oldAttEInt_173_m, - attEInt_173_m)); - } - - /** - * - * - * @generated - */ - public int getAttEInt_183_m() { - return attEInt_183_m; - } - - /** - * - * - * @generated - */ - public void setAttEInt_183_m(int newAttEInt_183_m) { - int oldAttEInt_183_m = attEInt_183_m; - attEInt_183_m = newAttEInt_183_m; - if (eNotificationRequired()) - eNotify(new ENotificationImpl(this, Notification.SET, - Mm0Package.CLASS10__ATT_EINT_183_M, oldAttEInt_183_m, - attEInt_183_m)); - } - - /** - * - * - * @generated - */ - @Override - public Object eGet(int featureID, boolean resolve, boolean coreType) { - switch (featureID) { - case Mm0Package.CLASS10__REF_CLASS3_2: - if (resolve) - return getRefClass3_2(); - return basicGetRefClass3_2(); - case Mm0Package.CLASS10__ATT_EINT_11: - return getAttEInt_11(); - case Mm0Package.CLASS10__ATT_EBOOLEAN_15: - return isAttEBoolean_15(); - case Mm0Package.CLASS10__ATT_EINT_32: - return getAttEInt_32(); - case Mm0Package.CLASS10__ATT_EINT_44: - return getAttEInt_44(); - case Mm0Package.CLASS10__ATT_EBOOLEAN_60: - return isAttEBoolean_60(); - case Mm0Package.CLASS10__ATT_EINT_73: - return getAttEInt_73(); - case Mm0Package.CLASS10__ATT_EBOOLEAN_74: - return isAttEBoolean_74(); - case Mm0Package.CLASS10__ATT_EBOOLEAN_79: - return isAttEBoolean_79(); - case Mm0Package.CLASS10__ATT_EINT_81: - return getAttEInt_81(); - case Mm0Package.CLASS10__ATT_EINT_84: - return getAttEInt_84(); - case Mm0Package.CLASS10__REF_CLASS10_112: - if (resolve) - return getRefClass10_112(); - return basicGetRefClass10_112(); - case Mm0Package.CLASS10__ATT_EBOOLEAN_118: - return isAttEBoolean_118(); - case Mm0Package.CLASS10__REF_CLASS9_119: - if (resolve) - return getRefClass9_119(); - return basicGetRefClass9_119(); - case Mm0Package.CLASS10__ATT_EINT_121: - return getAttEInt_121(); - case Mm0Package.CLASS10__ATT_EBOOLEAN_123: - return isAttEBoolean_123(); - case Mm0Package.CLASS10__REF_CLASS4_124: - if (resolve) - return getRefClass4_124(); - return basicGetRefClass4_124(); - case Mm0Package.CLASS10__ATT_EINT_125: - return getAttEInt_125(); - case Mm0Package.CLASS10__ATT_EBOOLEAN_128: - return isAttEBoolean_128(); - case Mm0Package.CLASS10__ATT_EINT_144: - return getAttEInt_144(); - case Mm0Package.CLASS10__ATT_EBOOLEAN_152: - return isAttEBoolean_152(); - case Mm0Package.CLASS10__ATT_EINT_173_M: - return getAttEInt_173_m(); - case Mm0Package.CLASS10__ATT_EINT_183_M: - return getAttEInt_183_m(); - } - return super.eGet(featureID, resolve, coreType); - } - - /** - * - * - * @generated - */ - @Override - public void eSet(int featureID, Object newValue) { - switch (featureID) { - case Mm0Package.CLASS10__REF_CLASS3_2: - setRefClass3_2((Class3) newValue); - return; - case Mm0Package.CLASS10__ATT_EINT_11: - setAttEInt_11((Integer) newValue); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_15: - setAttEBoolean_15((Boolean) newValue); - return; - case Mm0Package.CLASS10__ATT_EINT_32: - setAttEInt_32((Integer) newValue); - return; - case Mm0Package.CLASS10__ATT_EINT_44: - setAttEInt_44((Integer) newValue); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_60: - setAttEBoolean_60((Boolean) newValue); - return; - case Mm0Package.CLASS10__ATT_EINT_73: - setAttEInt_73((Integer) newValue); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_74: - setAttEBoolean_74((Boolean) newValue); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_79: - setAttEBoolean_79((Boolean) newValue); - return; - case Mm0Package.CLASS10__ATT_EINT_81: - setAttEInt_81((Integer) newValue); - return; - case Mm0Package.CLASS10__ATT_EINT_84: - setAttEInt_84((Integer) newValue); - return; - case Mm0Package.CLASS10__REF_CLASS10_112: - setRefClass10_112((Class10) newValue); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_118: - setAttEBoolean_118((Boolean) newValue); - return; - case Mm0Package.CLASS10__REF_CLASS9_119: - setRefClass9_119((Class9) newValue); - return; - case Mm0Package.CLASS10__ATT_EINT_121: - setAttEInt_121((Integer) newValue); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_123: - setAttEBoolean_123((Boolean) newValue); - return; - case Mm0Package.CLASS10__REF_CLASS4_124: - setRefClass4_124((Class4) newValue); - return; - case Mm0Package.CLASS10__ATT_EINT_125: - setAttEInt_125((Integer) newValue); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_128: - setAttEBoolean_128((Boolean) newValue); - return; - case Mm0Package.CLASS10__ATT_EINT_144: - setAttEInt_144((Integer) newValue); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_152: - setAttEBoolean_152((Boolean) newValue); - return; - case Mm0Package.CLASS10__ATT_EINT_173_M: - setAttEInt_173_m((Integer) newValue); - return; - case Mm0Package.CLASS10__ATT_EINT_183_M: - setAttEInt_183_m((Integer) newValue); - return; - } - super.eSet(featureID, newValue); - } - - /** - * - * - * @generated - */ - @Override - public void eUnset(int featureID) { - switch (featureID) { - case Mm0Package.CLASS10__REF_CLASS3_2: - setRefClass3_2((Class3) null); - return; - case Mm0Package.CLASS10__ATT_EINT_11: - setAttEInt_11(ATT_EINT_11_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_15: - setAttEBoolean_15(ATT_EBOOLEAN_15_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EINT_32: - setAttEInt_32(ATT_EINT_32_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EINT_44: - setAttEInt_44(ATT_EINT_44_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_60: - setAttEBoolean_60(ATT_EBOOLEAN_60_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EINT_73: - setAttEInt_73(ATT_EINT_73_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_74: - setAttEBoolean_74(ATT_EBOOLEAN_74_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_79: - setAttEBoolean_79(ATT_EBOOLEAN_79_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EINT_81: - setAttEInt_81(ATT_EINT_81_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EINT_84: - setAttEInt_84(ATT_EINT_84_EDEFAULT); - return; - case Mm0Package.CLASS10__REF_CLASS10_112: - setRefClass10_112((Class10) null); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_118: - setAttEBoolean_118(ATT_EBOOLEAN_118_EDEFAULT); - return; - case Mm0Package.CLASS10__REF_CLASS9_119: - setRefClass9_119((Class9) null); - return; - case Mm0Package.CLASS10__ATT_EINT_121: - setAttEInt_121(ATT_EINT_121_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_123: - setAttEBoolean_123(ATT_EBOOLEAN_123_EDEFAULT); - return; - case Mm0Package.CLASS10__REF_CLASS4_124: - setRefClass4_124((Class4) null); - return; - case Mm0Package.CLASS10__ATT_EINT_125: - setAttEInt_125(ATT_EINT_125_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_128: - setAttEBoolean_128(ATT_EBOOLEAN_128_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EINT_144: - setAttEInt_144(ATT_EINT_144_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EBOOLEAN_152: - setAttEBoolean_152(ATT_EBOOLEAN_152_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EINT_173_M: - setAttEInt_173_m(ATT_EINT_173_M_EDEFAULT); - return; - case Mm0Package.CLASS10__ATT_EINT_183_M: - setAttEInt_183_m(ATT_EINT_183_M_EDEFAULT); - return; - } - super.eUnset(featureID); - } - - /** - * - * - * @generated - */ - @Override - public boolean eIsSet(int featureID) { - switch (featureID) { - case Mm0Package.CLASS10__REF_CLASS3_2: - return refClass3_2 != null; - case Mm0Package.CLASS10__ATT_EINT_11: - return attEInt_11 != ATT_EINT_11_EDEFAULT; - case Mm0Package.CLASS10__ATT_EBOOLEAN_15: - return attEBoolean_15 != ATT_EBOOLEAN_15_EDEFAULT; - case Mm0Package.CLASS10__ATT_EINT_32: - return attEInt_32 != ATT_EINT_32_EDEFAULT; - case Mm0Package.CLASS10__ATT_EINT_44: - return attEInt_44 != ATT_EINT_44_EDEFAULT; - case Mm0Package.CLASS10__ATT_EBOOLEAN_60: - return attEBoolean_60 != ATT_EBOOLEAN_60_EDEFAULT; - case Mm0Package.CLASS10__ATT_EINT_73: - return attEInt_73 != ATT_EINT_73_EDEFAULT; - case Mm0Package.CLASS10__ATT_EBOOLEAN_74: - return attEBoolean_74 != ATT_EBOOLEAN_74_EDEFAULT; - case Mm0Package.CLASS10__ATT_EBOOLEAN_79: - return attEBoolean_79 != ATT_EBOOLEAN_79_EDEFAULT; - case Mm0Package.CLASS10__ATT_EINT_81: - return attEInt_81 != ATT_EINT_81_EDEFAULT; - case Mm0Package.CLASS10__ATT_EINT_84: - return attEInt_84 != ATT_EINT_84_EDEFAULT; - case Mm0Package.CLASS10__REF_CLASS10_112: - return refClass10_112 != null; - case Mm0Package.CLASS10__ATT_EBOOLEAN_118: - return attEBoolean_118 != ATT_EBOOLEAN_118_EDEFAULT; - case Mm0Package.CLASS10__REF_CLASS9_119: - return refClass9_119 != null; - case Mm0Package.CLASS10__ATT_EINT_121: - return attEInt_121 != ATT_EINT_121_EDEFAULT; - case Mm0Package.CLASS10__ATT_EBOOLEAN_123: - return attEBoolean_123 != ATT_EBOOLEAN_123_EDEFAULT; - case Mm0Package.CLASS10__REF_CLASS4_124: - return refClass4_124 != null; - case Mm0Package.CLASS10__ATT_EINT_125: - return attEInt_125 != ATT_EINT_125_EDEFAULT; - case Mm0Package.CLASS10__ATT_EBOOLEAN_128: - return attEBoolean_128 != ATT_EBOOLEAN_128_EDEFAULT; - case Mm0Package.CLASS10__ATT_EINT_144: - retur