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