KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > emf > ecore > resource > impl > ResourceFactoryImpl


1 /**
2  * <copyright>
3  *
4  * Copyright (c) 2002-2004 IBM Corporation and others.
5  * All rights reserved. This program and the accompanying materials
6  * are made available under the terms of the Eclipse Public License v1.0
7  * which accompanies this distribution, and is available at
8  * http://www.eclipse.org/legal/epl-v10.html
9  *
10  * Contributors:
11  * IBM - Initial API and implementation
12  *
13  * </copyright>
14  *
15  * $Id: ResourceFactoryImpl.java,v 1.3 2005/06/08 06:20:10 nickb Exp $
16  */

17 package org.eclipse.emf.ecore.resource.impl;
18
19
20 import org.eclipse.emf.common.util.URI;
21 import org.eclipse.emf.ecore.resource.Resource;
22
23
24 /**
25  * A trivial implementation of a resource factory.
26  */

27 public class ResourceFactoryImpl implements Resource.Factory
28 {
29   /**
30    * Creates an instance.
31    */

32   public ResourceFactoryImpl()
33   {
34   }
35   
36   /**
37    * Returns a newly allocated default resource {@link org.eclipse.emf.ecore.resource.impl.ResourceImpl#ResourceImpl(URI) implementation}.
38    * @param uri the URI.
39    * @return a new resource for the URI.
40    */

41   public Resource createResource(URI uri)
42   {
43     return new ResourceImpl(uri);
44   }
45 }
46
Popular Tags