blob: 2750a26bbf4fcb989cbccdd93d3e6afbf7c9af43 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.mylyn.docs.epub.ncx.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.eclipse.mylyn.docs.epub.ncx.NCXPackage;
/**
* This class contains helper methods to serialize and deserialize XML documents
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public class NCXXMLProcessor extends XMLProcessor {
/**
* Public constructor to instantiate the helper.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NCXXMLProcessor() {
super((EPackage.Registry.INSTANCE));
NCXPackage.eINSTANCE.eClass();
}
/**
* Register for "*" and "xml" file extensions the NCXResourceFactoryImpl 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 NCXResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new NCXResourceFactoryImpl());
}
return registrations;
}
} //NCXXMLProcessor