Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9ebfc00e4591d9ce092ec69b587f7420a25dccab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
 * <copyright>
 * </copyright>
 *
 * $Id: RegistryResourceImpl.java,v 1.2 2005/12/03 04:06:51 cbrealey Exp $
 */
package org.eclipse.wst.ws.internal.model.v10.registry.util;

import org.eclipse.emf.common.util.URI;

import org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl;

/**
 * <!-- begin-user-doc -->
 * The <b>Resource </b> associated with the package.
 * <!-- end-user-doc -->
 * @see org.eclipse.wst.ws.internal.model.v10.registry.util.RegistryResourceFactoryImpl
 * @generated
 */
public class RegistryResourceImpl extends XMLResourceImpl {
	/**
	 * Creates an instance of the resource.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param uri the URI of the new resource.
	 * @generated
	 */
	public RegistryResourceImpl(URI uri) {
		super(uri);
	}

} //RegistryResourceFactoryImpl

Back to the top