blob: 5ae1ecb9f195a8a6f6f35799b6e2dc29706a13cb [file] [log] [blame]
package org.eclipse.stem.graphsynchronizer.impl;
/*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.emf.ecore.impl.EFactoryImpl;
import org.eclipse.emf.ecore.plugin.EcorePlugin;
import org.eclipse.stem.graphsynchronizer.GraphsynchronizerFactory;
import org.eclipse.stem.graphsynchronizer.GraphsynchronizerPackage;
import org.eclipse.stem.graphsynchronizer.SynchGraphPartitioner;
/**
* <!-- begin-user-doc -->
* An implementation of the model <b>Factory</b>.
* <!-- end-user-doc -->
* @generated
*/
public class GraphsynchronizerFactoryImpl extends EFactoryImpl implements GraphsynchronizerFactory {
/**
* Creates the default factory implementation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static GraphsynchronizerFactory init() {
try {
GraphsynchronizerFactory theGraphsynchronizerFactory = (GraphsynchronizerFactory)EPackage.Registry.INSTANCE.getEFactory("http:///org/eclipse/stem/graphsynchronizer/graphsynchronizer.ecore");
if (theGraphsynchronizerFactory != null) {
return theGraphsynchronizerFactory;
}
}
catch (Exception exception) {
EcorePlugin.INSTANCE.log(exception);
}
return new GraphsynchronizerFactoryImpl();
}
/**
* Creates an instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public GraphsynchronizerFactoryImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public EObject create(EClass eClass) {
switch (eClass.getClassifierID()) {
case GraphsynchronizerPackage.SYNCH_GRAPH_PARTITIONER: return createSynchGraphPartitioner();
default:
throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier");
}
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public SynchGraphPartitioner createSynchGraphPartitioner() {
SynchGraphPartitionerImpl synchGraphPartitioner = new SynchGraphPartitionerImpl();
return synchGraphPartitioner;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public GraphsynchronizerPackage getGraphsynchronizerPackage() {
return (GraphsynchronizerPackage)getEPackage();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @deprecated
* @generated
*/
@Deprecated
public static GraphsynchronizerPackage getPackage() {
return GraphsynchronizerPackage.eINSTANCE;
}
} //GraphsynchronizerFactoryImpl