blob: ce7cd9800824ebcf2190141298b796f645b78e7a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 CohesionForce, Inc
* 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:
* CohesionForce, Inc - Initial API and implementation
*******************************************************************************/
package org.eclipse.emf.edapt.spi.history.util;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.impl.ResourceFactoryImpl;
/**
* <!-- begin-user-doc -->
* The <b>Resource Factory</b> associated with the package.
* <!-- end-user-doc -->
*
* @see org.eclipse.emf.edapt.spi.history.util.HistoryResourceImpl
* @generated NOT
* @since 1.2
*/
public class HistoryResourceFactoryImpl extends ResourceFactoryImpl {
/**
* Creates an instance of the resource factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
public HistoryResourceFactoryImpl() {
super();
}
/**
* Creates an instance of the resource.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public Resource createResource(URI uri) {
final Resource result = new HistoryResourceImpl(uri);
return result;
}
} // HistoryResourceFactoryImpl