/** * <copyright> * </copyright> * * $Id$ */ package org.jboss.tools.smooks.model.javabean12.util; import java.util.Map; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.xmi.util.XMLProcessor; import org.jboss.tools.smooks.model.javabean12.Javabean12Package; /** * This class contains helper methods to serialize and deserialize XML documents * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public class Javabean12XMLProcessor extends XMLProcessor { /** * Public constructor to instantiate the helper. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Javabean12XMLProcessor() { super((EPackage.Registry.INSTANCE)); Javabean12Package.eINSTANCE.eClass(); } /** * Register for "*" and "xml" file extensions the Javabean12ResourceFactoryImpl factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected Map getRegistrations() { if (registrations == null) { super.getRegistrations(); registrations.put(XML_EXTENSION, new Javabean12ResourceFactoryImpl()); registrations.put(STAR_EXTENSION, new Javabean12ResourceFactoryImpl()); } return registrations; } } //Javabean12XMLProcessor