/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.bpel.wsil.model.inspection.util; import java.util.Map; import org.eclipse.bpel.wsil.model.inspection.InspectionPackage; 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 InspectionXMLProcessor extends XMLProcessor { /** * Public constructor to instantiate the helper. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public InspectionXMLProcessor() { super((EPackage.Registry.INSTANCE)); InspectionPackage.eINSTANCE.eClass(); } /** * Register for "*" and "xml" file extensions the InspectionResourceFactoryImpl 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 InspectionResourceFactoryImpl()); registrations.put(STAR_EXTENSION, new InspectionResourceFactoryImpl()); } return registrations; } } //InspectionXMLProcessor