blob: 71c58b5ba0033c86386f295cad98e5450fca41ce [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2017 CEA LIST and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.internal.infra.gmfdiag.layers.runtime.model;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.Resource.Factory;
/**
* @author Quentin Le Menez
*
*/
public class LayersModelResourceFactory implements Factory {
/**
* @see org.eclipse.emf.ecore.resource.Resource.Factory#createResource(org.eclipse.emf.common.util.URI)
*
* @param resourceURI
* @return
*/
@Override
public Resource createResource(URI resourceURI) {
return null;
// return new LayersModelResource(resourceURI);
}
}