blob: 24df5d55f1459dc0fcc16d6d0c58dd626d5760cd [file] [log] [blame]
/**
* Copyright (c) 2011-2018 EclipseSource Muenchen GmbH and others.
*
* 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:
* Lucas Koehler - initial API and implementation
*/
package org.eclipse.emfforms.spi.view.indexsegment.model.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.emfforms.spi.view.indexsegment.model.util.VIndexsegmentResourceImpl
* @generated
*/
public class VIndexsegmentResourceFactoryImpl extends ResourceFactoryImpl {
/**
* Creates an instance of the resource factory. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @generated
*/
public VIndexsegmentResourceFactoryImpl() {
super();
}
/**
* Creates an instance of the resource. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @generated
*/
@Override
public Resource createResource(URI uri) {
final Resource result = new VIndexsegmentResourceImpl(uri);
return result;
}
} // VIndexsegmentResourceFactoryImpl