blob: d9a2e9cd989af949bede8ad9169495a7508244a6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 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
*******************************************************************************/
package org.eclipse.wst.wsdl.binding.soap.internal.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.wst.wsdl.binding.soap.*;
/**
* <!-- begin-user-doc -->
* An implementation of the model <b>Factory</b>.
* <!-- end-user-doc -->
* @generated
*/
public class SOAPFactoryImpl extends EFactoryImpl implements SOAPFactory
{
/**
* Creates the default factory implementation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static SOAPFactory init()
{
try
{
SOAPFactory theSOAPFactory = (SOAPFactory)EPackage.Registry.INSTANCE.getEFactory("http://www.eclipse.org/wsdl/2003/SOAP"); //$NON-NLS-1$
if (theSOAPFactory != null)
{
return theSOAPFactory;
}
}
catch (Exception exception)
{
EcorePlugin.INSTANCE.log(exception);
}
return new SOAPFactoryImpl();
}
/**
* Creates an instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public SOAPFactoryImpl()
{
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EObject create(EClass eClass)
{
switch (eClass.getClassifierID())
{
case SOAPPackage.SOAP_BINDING:
return createSOAPBinding();
case SOAPPackage.SOAP_BODY:
return createSOAPBody();
case SOAPPackage.SOAP_HEADER_BASE:
return createSOAPHeaderBase();
case SOAPPackage.SOAP_FAULT:
return createSOAPFault();
case SOAPPackage.SOAP_OPERATION:
return createSOAPOperation();
case SOAPPackage.SOAP_ADDRESS:
return createSOAPAddress();
case SOAPPackage.SOAP_HEADER_FAULT:
return createSOAPHeaderFault();
case SOAPPackage.SOAP_HEADER:
return createSOAPHeader();
default:
throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); //$NON-NLS-1$ //$NON-NLS-2$
}
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Object createFromString(EDataType eDataType, String initialValue)
{
switch (eDataType.getClassifierID())
{
case SOAPPackage.ISTRING:
return createIStringFromString(eDataType, initialValue);
default:
throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier"); //$NON-NLS-1$ //$NON-NLS-2$
}
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String convertToString(EDataType eDataType, Object instanceValue)
{
switch (eDataType.getClassifierID())
{
case SOAPPackage.ISTRING:
return convertIStringToString(eDataType, instanceValue);
default:
throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier"); //$NON-NLS-1$ //$NON-NLS-2$
}
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public SOAPBinding createSOAPBinding()
{
SOAPBindingImpl soapBinding = new SOAPBindingImpl();
return soapBinding;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public SOAPBody createSOAPBody()
{
SOAPBodyImpl soapBody = new SOAPBodyImpl();
return soapBody;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public SOAPHeaderBase createSOAPHeaderBase()
{
SOAPHeaderBaseImpl soapHeaderBase = new SOAPHeaderBaseImpl();
return soapHeaderBase;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public SOAPFault createSOAPFault()
{
SOAPFaultImpl soapFault = new SOAPFaultImpl();
return soapFault;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public SOAPOperation createSOAPOperation()
{
SOAPOperationImpl soapOperation = new SOAPOperationImpl();
return soapOperation;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public SOAPAddress createSOAPAddress()
{
SOAPAddressImpl soapAddress = new SOAPAddressImpl();
return soapAddress;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public SOAPHeaderFault createSOAPHeaderFault()
{
SOAPHeaderFaultImpl soapHeaderFault = new SOAPHeaderFaultImpl();
return soapHeaderFault;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public SOAPHeader createSOAPHeader()
{
SOAPHeaderImpl soapHeader = new SOAPHeaderImpl();
return soapHeader;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String createIStringFromString(EDataType eDataType, String initialValue)
{
return (String)super.createFromString(eDataType, initialValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String convertIStringToString(EDataType eDataType, Object instanceValue)
{
return super.convertToString(eDataType, instanceValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public SOAPPackage getSOAPPackage()
{
return (SOAPPackage)getEPackage();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @deprecated
* @generated
*/
public static SOAPPackage getPackage()
{
return SOAPPackage.eINSTANCE;
}
} //SOAPFactoryImpl