/****************************************************************************** * Copyright (c) 2011-2013, Linagora * * 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: * Linagora - initial API and implementation *******************************************************************************/ package com.ebmwebsourcing.petals.services.ftp.ftp3.impl; import com.ebmwebsourcing.petals.services.ftp.ftp3.*; 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; /** * <!-- begin-user-doc --> * An implementation of the model <b>Factory</b>. * <!-- end-user-doc --> * @generated */ public class Ftp3FactoryImpl extends EFactoryImpl implements Ftp3Factory { /** * Creates the default factory implementation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static Ftp3Factory init() { try { Ftp3Factory theFtp3Factory = (Ftp3Factory)EPackage.Registry.INSTANCE.getEFactory("http://petals.ow2.org/components/ftp/version-3"); if (theFtp3Factory != null) { return theFtp3Factory; } } catch (Exception exception) { EcorePlugin.INSTANCE.log(exception); } return new Ftp3FactoryImpl(); } /** * Creates an instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Ftp3FactoryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case Ftp3Package.FTP_PROVIDES: return createFtpProvides(); 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 Ftp3Package.CONNECTION_TYPE: return createConnectionTypeFromString(eDataType, initialValue); case Ftp3Package.TRANSFER_TYPE: return createTransferTypeFromString(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 Ftp3Package.CONNECTION_TYPE: return convertConnectionTypeToString(eDataType, instanceValue); case Ftp3Package.TRANSFER_TYPE: return convertTransferTypeToString(eDataType, instanceValue); default: throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public FtpProvides createFtpProvides() { FtpProvidesImpl ftpProvides = new FtpProvidesImpl(); return ftpProvides; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ConnectionType createConnectionTypeFromString(EDataType eDataType, String initialValue) { ConnectionType result = ConnectionType.get(initialValue); if (result == null) throw new IllegalArgumentException("The value '" + initialValue + "' is not a valid enumerator of '" + eDataType.getName() + "'"); return result; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String convertConnectionTypeToString(EDataType eDataType, Object instanceValue) { return instanceValue == null ? null : instanceValue.toString(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public TransferType createTransferTypeFromString(EDataType eDataType, String initialValue) { TransferType result = TransferType.get(initialValue); if (result == null) throw new IllegalArgumentException("The value '" + initialValue + "' is not a valid enumerator of '" + eDataType.getName() + "'"); return result; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String convertTransferTypeToString(EDataType eDataType, Object instanceValue) { return instanceValue == null ? null : instanceValue.toString(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Ftp3Package getFtp3Package() { return (Ftp3Package)getEPackage(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @deprecated * @generated */ @Deprecated public static Ftp3Package getPackage() { return Ftp3Package.eINSTANCE; } } //Ftp3FactoryImpl