blob: 333b4b0e3bd71bff2c800166ec39938f3488cf53 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 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
*******************************************************************************/
package org.eclipse.wst.common.componentcore.internal.impl;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.wst.common.internal.emf.resource.MappedXMIHelper;
import org.eclipse.wst.common.internal.emf.resource.ReferencedXMIResourceImpl;
public class ReferencedComponentXMIResourceImpl extends
ReferencedXMIResourceImpl implements Resource {
public ReferencedComponentXMIResourceImpl() {
super();
// TODO Auto-generated constructor stub
}
public ReferencedComponentXMIResourceImpl(URI uri) {
super(uri);
// TODO Auto-generated constructor stub
}
protected MappedXMIHelper doCreateXMLHelper() {
return new MappedComponentXMIHelper(this, getPrefixToPackageURIs());
}
}