blob: dd1b4a7508379dbc60d8e5d5699818af3610a590 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2018 Borland Software Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.emf.util;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.resource.ResourceSet;
public class ModelContent {
public ModelContent(Collection<EObject> content) {
myContent = new ArrayList<EObject>(content);
}
public List<EObject> getContent() {
return Collections.unmodifiableList(myContent);
}
public ModelContent getResolvedContent(EObject metamodel) {
return new ModelContent(EmfUtil.getResolvedContent(myContent, metamodel));
}
public ResourceSet getResourceSet() {
for (EObject obj : myContent) {
if (obj.eResource() != null && obj.eResource().getResourceSet() != null) {
return obj.eResource().getResourceSet();
}
}
return null;
}
private final List<EObject> myContent;
}