blob: 1d72814d6a86d4d13327555b5360a8f3609da239 [file] [log] [blame]
package org.eclipse.emf.edapt.declaration.creation;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EReference;
import org.eclipse.emf.edapt.declaration.EdaptConstraint;
import org.eclipse.emf.edapt.declaration.EdaptOperation;
import org.eclipse.emf.edapt.declaration.EdaptParameter;
import org.eclipse.emf.edapt.declaration.OperationImplementation;
import org.eclipse.emf.edapt.spi.migration.Instance;
import org.eclipse.emf.edapt.spi.migration.Metamodel;
import org.eclipse.emf.edapt.spi.migration.Model;
/**
* {@description}
*
* @author herrmama
* @author $Author$
* @version $Rev$
* @levd.rating YELLOW Hash: 7490FAC2D52FC78E48BF71C49B597222
*/
@EdaptOperation(identifier = "deleteOppositeReference", label = "Delete Opposite Reference", description = "In the metamodel, the opposite of a reference is deleted. In the model, its values are deleted, too.")
public class DeleteOppositeReference extends OperationImplementation {
/** {@description} */
@EdaptParameter(main = true, description = "The reference whose opposite should be deleted")
public EReference reference;
/** {@description} */
@EdaptConstraint(restricts = "reference", description = "The reference needs to define an opposite")
public boolean checkReferenceOpposite(EReference reference) {
return reference.getEOpposite() != null;
}
/** {@inheritDoc} */
@Override
public void execute(Metamodel metamodel, Model model) {
final EReference opposite = reference.getEOpposite();
final EClass eClass = opposite.getEContainingClass();
// metamodel adaptation
metamodel.delete(opposite);
// model migration
for (final Instance instance : model.getAllInstances(eClass)) {
deleteFeatureValue(instance, opposite);
}
}
}