blob: d8fd51fc7de4064218695089e53f340e85b7c6c7 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2013, 2017 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST - Initial API and implementation
*****************************************************************************/
package org.eclipse.papyrus.cdo.internal.ui.customization.properties.storage;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.Resource.Factory;
import org.eclipse.emf.ecore.resource.impl.ResourceFactoryRegistryImpl;
/**
* Specialized resource factory that delegates the custom Papyrus CDO Text resource
* URI scheme to registrations by extension.
*/
public class CDOTextDelegatingResourceFactory implements Factory {
private final Resource.Factory.Registry registry;
public CDOTextDelegatingResourceFactory(Resource.Factory.Registry registry) {
super();
this.registry = registry;
}
@Override
public Resource createResource(URI uri) {
Resource.Factory delegate = ResourceFactoryRegistryImpl.convert(registry.getExtensionToFactoryMap().get(uri.fileExtension()));
return (delegate != null) ? delegate.createResource(uri) : null;
}
}