blob: e9a5b6e8c51dbb0dea3dde227e019e0e3bb70d7e [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
*/
package org.eclipse.osbp.bpmn2.ecore.ui;
import org.eclipse.core.resources.IProject;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.xtext.ui.resource.IResourceSetInitializer;
import org.eclipse.osbp.bpmn2.ecore.BPMnResourceFactoryImpl;
public class BPMnResourceSetInitializer implements IResourceSetInitializer {
public void initialize(ResourceSet resourceSet, IProject project) {
resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap()
.put("bpmn2", new BPMnResourceFactoryImpl());
}
}