/******************************************************************************* * Copyright (c) 2009, 2011 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.openhealthtools.uml.xdw; import org.eclipse.emf.common.util.URI; import org.eclipse.emf.ecore.xmi.XMLLoad; import org.eclipse.emf.ecore.xmi.XMLSave; import org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl; /** * * The Resource associated with the package. * * @see org.openhealthtools.mdht.uml.xdw.internal.resource.XDWResourceFactoryImpl * @generated */ public class XDWResourceImpl extends XMLResourceImpl implements XDWResource { /** * Creates an instance of the resource. * * * @param uri the URI of the new resource. * @generated */ public XDWResourceImpl(URI uri) { super(uri); } @Override protected XMLLoad createXMLLoad() { return new XDWLoadImpl(createXMLHelper()); } @Override protected XMLSave createXMLSave() { return new XDWSaveImpl(createXMLHelper()); } } // XDWResourceImpl