/**
*/
package bpmn20exec.util;
import bpmn20exec.Bpmn20execPackage;
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;
/**
* This class contains helper methods to serialize and deserialize XML documents
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public class Bpmn20execXMLProcessor extends XMLProcessor {
/**
* Public constructor to instantiate the helper.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Bpmn20execXMLProcessor() {
super((EPackage.Registry.INSTANCE));
Bpmn20execPackage.eINSTANCE.eClass();
}
/**
* Register for "*" and "xml" file extensions the Bpmn20execResourceFactoryImpl 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 Bpmn20execResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new Bpmn20execResourceFactoryImpl());
}
return registrations;
}
} //Bpmn20execXMLProcessor