blob: 303bbf891d1aebe8f4766bbb5122f5959944de86 [file] [log] [blame]
/**
*/
package org.hl7.fhir.util;
import java.util.Map;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.xmi.util.XMLProcessor;
import org.hl7.fhir.FhirPackage;
/**
* This class contains helper methods to serialize and deserialize XML documents
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public class FhirXMLProcessor extends XMLProcessor {
/**
* Public constructor to instantiate the helper.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public FhirXMLProcessor() {
super((EPackage.Registry.INSTANCE));
FhirPackage.eINSTANCE.eClass();
}
/**
* Register for "*" and "xml" file extensions the FhirResourceFactoryImpl factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations() {
if (registrations == null) {
super.getRegistrations();
registrations.put(XML_EXTENSION, new FhirResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new FhirResourceFactoryImpl());
}
return registrations;
}
} //FhirXMLProcessor