blob: e8c405a060c27f94e952f6c3786030334f9e73b5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2010 Sonatype, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Sonatype, Inc. - initial API and implementation
*******************************************************************************/
/**
* <copyright>
* </copyright>
*
* $Id: PomXMLProcessor.java 20588 2008-12-04 17:59:55Z jerdfelt $
*/
package org.eclipse.m2e.model.edit.pom.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.m2e.model.edit.pom.PomPackage;
/**
* This class contains helper methods to serialize and deserialize XML documents <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @generated
*/
public class PomXMLProcessor extends XMLProcessor {
/**
* Public constructor to instantiate the helper. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public PomXMLProcessor() {
super((EPackage.Registry.INSTANCE));
PomPackage.eINSTANCE.eClass();
}
/**
* Register for "*" and "xml" file extensions the PomResourceFactoryImpl 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 PomResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new PomResourceFactoryImpl());
}
return registrations;
}
} // PomXMLProcessor