blob: a3ac9a0496913b70211a2e91a5099ee7719e02a1 [file] [log] [blame]
/**
* <copyright>
* OCL2AC is developed by Nebras Nassar based on an initial version developed by Thorsten Arendt and Jan Steffen Becker.
* </copyright>
*/
package de.unimarburg.swt.ocl2ac.gc2ac.util;
import nestedcondition.Morphism;
public class MorphismPair {
private Morphism aPrime;
private Morphism bPrime;
public Morphism getAPrime() {
return aPrime;
}
public Morphism getBPrime() {
return bPrime;
}
public void setMorphismAPrime(Morphism aPrime) {
this.aPrime = aPrime;
}
public void setMorphismBPrime(Morphism bPrime) {
this.bPrime = bPrime;
}
}