Is there a way to combine multiple Ecore models (2 or more) in a single Ecore model programmatically in java? With all models conform to the same metamodel.

IN:
Model1 conforming to metamodelX
Model2 conforming to metamodelX
model3 conforming to metamodelX
model4 conforming to metamodelX
model5 conforming to metamodelX


out:
modelOut conforming to metamodelX and merge of Model1, Model2, model3, model4, model5 ...
link|improve this question
feedback

1 Answer

There is Eclipse project for handling EMF comparing and Merging, called EMF Compare.

Here is example provided by them:

// Loading models
EObject model1 = ModelUtils.load(model1, resourceSet);
EObject model2 = ModelUtils.load(model2, resourceSet);

// Matching model elements
MatchModel match = MatchService.doMatch(model1, model2, Collections.<String, Object> emptyMap());
// Computing differences
DiffModel diff = DiffService.doDiff(match, false);
// Merges all differences from model1 to model2
List<DiffElement> differences = new ArrayList<DiffElement>(diff.getOwnedElements());
MergeService.merge(differences, true);

This really provides very good ways to handle model merging and other compare stuffs. You can also manually go through the changes.

Here is full example provided by them: Here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.