List<ArtefactLocation> modelLocations = new ArrayList<ArtefactLocation>();
for (TreeObject selection : view.getSelectedObjects()) {
if (selection instanceof ModelTreeObject) {
String modelID = ((ModelTreeObject) selection).getModelID();
modelLocations.add(new ArtefactLocation(Activator.PLUGIN_ID,
modelID));
}
}
ArtefactIntegrator ooIntegrator = new ArtefactIntegrator();