Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/dependability/errormodel/impl/ErrormodelFactoryImpl.java')
-rw-r--r--extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/dependability/errormodel/impl/ErrormodelFactoryImpl.java256
1 files changed, 256 insertions, 0 deletions
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/dependability/errormodel/impl/ErrormodelFactoryImpl.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/dependability/errormodel/impl/ErrormodelFactoryImpl.java
new file mode 100644
index 00000000000..95525a6c1f9
--- /dev/null
+++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/dependability/errormodel/impl/ErrormodelFactoryImpl.java
@@ -0,0 +1,256 @@
+/*****************************************************************************
+ * Copyright (c) 2010 CEA LIST.
+ *
+ *
+ * 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:
+ * Sara TUCCI (CEA LIST) sara.tucci@cea.fr - Initial API and implementation
+ * Chokri MRAIDHA (CEA LIST) chokri.mraidha@cea.fr - Initial API and implementation
+ * David SERVAT (CEA LIST) david.servat@cea.fr - Initial API and implementation
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.eastadl.dependability.errormodel.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.papyrus.eastadl.dependability.errormodel.Anomaly;
+import org.eclipse.papyrus.eastadl.dependability.errormodel.ErrorBehavior;
+import org.eclipse.papyrus.eastadl.dependability.errormodel.ErrorBehaviorKind;
+import org.eclipse.papyrus.eastadl.dependability.errormodel.ErrorModelPrototype;
+import org.eclipse.papyrus.eastadl.dependability.errormodel.ErrorModelType;
+import org.eclipse.papyrus.eastadl.dependability.errormodel.ErrormodelFactory;
+import org.eclipse.papyrus.eastadl.dependability.errormodel.ErrormodelPackage;
+import org.eclipse.papyrus.eastadl.dependability.errormodel.FailureOutPort;
+import org.eclipse.papyrus.eastadl.dependability.errormodel.FaultFailurePropagationLink;
+import org.eclipse.papyrus.eastadl.dependability.errormodel.FaultInPort;
+import org.eclipse.papyrus.eastadl.dependability.errormodel.InternalFaultPrototype;
+import org.eclipse.papyrus.eastadl.dependability.errormodel.ProcessFaultPrototype;
+
+
+/**
+ * <!-- begin-user-doc -->
+ * An implementation of the model <b>Factory</b>.
+ * <!-- end-user-doc -->
+ * @generated
+ */
+public class ErrormodelFactoryImpl extends EFactoryImpl implements ErrormodelFactory {
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @deprecated
+ * @generated
+ */
+ @Deprecated
+ public static ErrormodelPackage getPackage() {
+ return ErrormodelPackage.eINSTANCE;
+ }
+
+ /**
+ * Creates the default factory implementation.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public static ErrormodelFactory init() {
+ try {
+ ErrormodelFactory theErrormodelFactory = (ErrormodelFactory)EPackage.Registry.INSTANCE.getEFactory(ErrormodelPackage.eNS_URI);
+ if (theErrormodelFactory != null) {
+ return theErrormodelFactory;
+ }
+ }
+ catch (Exception exception) {
+ EcorePlugin.INSTANCE.log(exception);
+ }
+ return new ErrormodelFactoryImpl();
+ }
+
+ /**
+ * Creates an instance of the factory.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public ErrormodelFactoryImpl() {
+ super();
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public String convertErrorBehaviorKindToString(EDataType eDataType, Object instanceValue) {
+ return instanceValue == null ? null : instanceValue.toString();
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ @Override
+ public String convertToString(EDataType eDataType, Object instanceValue) {
+ switch (eDataType.getClassifierID()) {
+ case ErrormodelPackage.ERROR_BEHAVIOR_KIND:
+ return convertErrorBehaviorKindToString(eDataType, instanceValue);
+ default:
+ throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier");
+ }
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ @Override
+ public EObject create(EClass eClass) {
+ switch (eClass.getClassifierID()) {
+ case ErrormodelPackage.ERROR_BEHAVIOR: return createErrorBehavior();
+ case ErrormodelPackage.INTERNAL_FAULT_PROTOTYPE: return createInternalFaultPrototype();
+ case ErrormodelPackage.ANOMALY: return createAnomaly();
+ case ErrormodelPackage.ERROR_MODEL_TYPE: return createErrorModelType();
+ case ErrormodelPackage.FAULT_FAILURE_PROPAGATION_LINK: return createFaultFailurePropagationLink();
+ case ErrormodelPackage.ERROR_MODEL_PROTOTYPE: return createErrorModelPrototype();
+ case ErrormodelPackage.FAILURE_OUT_PORT: return createFailureOutPort();
+ case ErrormodelPackage.FAULT_IN_PORT: return createFaultInPort();
+ case ErrormodelPackage.PROCESS_FAULT_PROTOTYPE: return createProcessFaultPrototype();
+ default:
+ throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier");
+ }
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public Anomaly createAnomaly() {
+ AnomalyImpl anomaly = new AnomalyImpl();
+ return anomaly;
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public ErrorBehavior createErrorBehavior() {
+ ErrorBehaviorImpl errorBehavior = new ErrorBehaviorImpl();
+ return errorBehavior;
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public ErrorBehaviorKind createErrorBehaviorKindFromString(EDataType eDataType, String initialValue) {
+ ErrorBehaviorKind result = ErrorBehaviorKind.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 ErrorModelPrototype createErrorModelPrototype() {
+ ErrorModelPrototypeImpl errorModelPrototype = new ErrorModelPrototypeImpl();
+ return errorModelPrototype;
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public ErrorModelType createErrorModelType() {
+ ErrorModelTypeImpl errorModelType = new ErrorModelTypeImpl();
+ return errorModelType;
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public FailureOutPort createFailureOutPort() {
+ FailureOutPortImpl failureOutPort = new FailureOutPortImpl();
+ return failureOutPort;
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public FaultFailurePropagationLink createFaultFailurePropagationLink() {
+ FaultFailurePropagationLinkImpl faultFailurePropagationLink = new FaultFailurePropagationLinkImpl();
+ return faultFailurePropagationLink;
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public FaultInPort createFaultInPort() {
+ FaultInPortImpl faultInPort = new FaultInPortImpl();
+ return faultInPort;
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ @Override
+ public Object createFromString(EDataType eDataType, String initialValue) {
+ switch (eDataType.getClassifierID()) {
+ case ErrormodelPackage.ERROR_BEHAVIOR_KIND:
+ return createErrorBehaviorKindFromString(eDataType, initialValue);
+ default:
+ throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier");
+ }
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public InternalFaultPrototype createInternalFaultPrototype() {
+ InternalFaultPrototypeImpl internalFaultPrototype = new InternalFaultPrototypeImpl();
+ return internalFaultPrototype;
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public ProcessFaultPrototype createProcessFaultPrototype() {
+ ProcessFaultPrototypeImpl processFaultPrototype = new ProcessFaultPrototypeImpl();
+ return processFaultPrototype;
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public ErrormodelPackage getErrormodelPackage() {
+ return (ErrormodelPackage)getEPackage();
+ }
+
+} //ErrormodelFactoryImpl

Back to the top