/** * Copyright (c) 2015 Obeo. * 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.htm * Contributors: Obeo - initial API and implementation */ package org.eclipse.sirius.contentassist.impl; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EDataType; 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.sirius.contentassist.*; /** * <!-- begin-user-doc --> * An implementation of the model <b>Factory</b>. * <!-- end-user-doc --> * @generated */ public class ContentassistFactoryImpl extends EFactoryImpl implements ContentassistFactory { /** * Creates the default factory implementation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static ContentassistFactory init() { try { ContentassistFactory theContentassistFactory = (ContentassistFactory)EPackage.Registry.INSTANCE.getEFactory(ContentassistPackage.eNS_URI); if (theContentassistFactory != null) { return theContentassistFactory; } } catch (Exception exception) { EcorePlugin.INSTANCE.log(exception); } return new ContentassistFactoryImpl(); } /** * Creates an instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ContentassistFactoryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case ContentassistPackage.COMPLETION_PROPOSAL: return createCompletionProposal(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object createFromString(EDataType eDataType, String initialValue) { switch (eDataType.getClassifierID()) { case ContentassistPackage.STYLED_STRING: return createStyledStringFromString(eDataType, initialValue); case ContentassistPackage.CONTENT_ASSIST_IMAGE: return createContentAssistImageFromString(eDataType, initialValue); default: throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String convertToString(EDataType eDataType, Object instanceValue) { switch (eDataType.getClassifierID()) { case ContentassistPackage.STYLED_STRING: return convertStyledStringToString(eDataType, instanceValue); case ContentassistPackage.CONTENT_ASSIST_IMAGE: return convertContentAssistImageToString(eDataType, instanceValue); default: throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public CompletionProposal createCompletionProposal() { CompletionProposalImpl completionProposal = new CompletionProposalImpl(); return completionProposal; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Object createStyledStringFromString(EDataType eDataType, String initialValue) { return super.createFromString(eDataType, initialValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String convertStyledStringToString(EDataType eDataType, Object instanceValue) { return super.convertToString(eDataType, instanceValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Object createContentAssistImageFromString(EDataType eDataType, String initialValue) { return super.createFromString(eDataType, initialValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String convertContentAssistImageToString(EDataType eDataType, Object instanceValue) { return super.convertToString(eDataType, instanceValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ContentassistPackage getContentassistPackage() { return (ContentassistPackage)getEPackage(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @deprecated * @generated */ @Deprecated public static ContentassistPackage getPackage() { return ContentassistPackage.eINSTANCE; } } //ContentassistFactoryImpl