blob: b92c4badc9a4248e7163ab4ff1ce9281eed7c32a [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: ApplicationclientXMLProcessor.java,v 1.1 2007/03/20 18:04:38 jsholl Exp $
*/
package org.eclipse.jst.javaee.applicationclient.internal.util;
import java.util.Map;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.emf.ecore.xmi.util.XMLProcessor;
import org.eclipse.jst.javaee.applicationclient.internal.metadata.ApplicationclientPackage;
/**
* This class contains helper methods to serialize and deserialize XML documents
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public class ApplicationclientXMLProcessor extends XMLProcessor {
/**
* Public constructor to instantiate the helper.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ApplicationclientXMLProcessor() {
super((EPackage.Registry.INSTANCE));
ApplicationclientPackage.eINSTANCE.eClass();
}
/**
* Register for "*" and "xml" file extensions the ApplicationclientResourceFactoryImpl factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Map getRegistrations() {
if (registrations == null) {
super.getRegistrations();
registrations.put(XML_EXTENSION, new ApplicationclientResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new ApplicationclientResourceFactoryImpl());
}
return registrations;
}
} //ApplicationclientXMLProcessor