blob: 44c2c7436c9b3d201ba333f096648e33ac54cf76 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation 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:
* IBM Corporation - initial API and implementation
* yyyymmdd bug Email and other contact information
* -------- -------- -----------------------------------------------------------
* 20091021 291954 ericdp@ca.ibm.com - Eric D. Peters, JAX-RS: Implement JAX-RS Facet
*******************************************************************************/
package org.eclipse.jst.ws.jaxrs.core.internal.jaxrslibraryregistry.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.jst.ws.jaxrs.core.internal.jaxrslibraryregistry.util.JAXRSLibraryRegistryResourceImpl
* @generated
*/
public class JAXRSLibraryRegistryResourceFactoryImpl extends
ResourceFactoryImpl {
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
/**
* Creates an instance of the resource factory. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @generated
*/
public JAXRSLibraryRegistryResourceFactoryImpl() {
super();
}
/**
* Creates an instance of the resource. <!-- begin-user-doc -->
*
* @param uri
* @return the Resource <!-- end-user-doc -->
* @generated
*/
public Resource createResource(URI uri) {
Resource result = new JAXRSLibraryRegistryResourceImpl(uri);
return result;
}
} // JAXRSLibraryRegistryResourceFactoryImpl