All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nasdanika.models.functionflow.impl.FlowElementImpl Maven / Gradle / Ivy

The newest version!
/**
 */
package org.nasdanika.models.functionflow.impl;

import java.util.Collection;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EClass;

import org.nasdanika.models.architecture.impl.ArchitectureDescriptionElementImpl;

import org.nasdanika.models.functionflow.FlowElement;
import org.nasdanika.models.functionflow.FunctionFlowPackage;

/**
 * 
 * An implementation of the model object 'Flow Element'.
 * 
 * 

* The following features are implemented: *

*
    *
  • {@link org.nasdanika.models.functionflow.impl.FlowElementImpl#getImplementation Implementation}
  • *
  • {@link org.nasdanika.models.functionflow.impl.FlowElementImpl#getErrors Errors}
  • *
  • {@link org.nasdanika.models.functionflow.impl.FlowElementImpl#getConfiguration Configuration}
  • *
* * @generated */ public class FlowElementImpl extends ArchitectureDescriptionElementImpl implements FlowElement { /** * The default value of the '{@link #getImplementation() Implementation}' attribute. * * * @see #getImplementation() * @generated * @ordered */ protected static final String IMPLEMENTATION_EDEFAULT = null; /** * The default value of the '{@link #getConfiguration() Configuration}' attribute. * * * @see #getConfiguration() * @generated * @ordered */ protected static final String CONFIGURATION_EDEFAULT = null; /** * * * @generated */ protected FlowElementImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return FunctionFlowPackage.Literals.FLOW_ELEMENT; } /** * * * @generated */ @Override public String getImplementation() { return (String)eDynamicGet(FunctionFlowPackage.FLOW_ELEMENT__IMPLEMENTATION, FunctionFlowPackage.Literals.FLOW_ELEMENT__IMPLEMENTATION, true, true); } /** * * * @generated */ @Override public void setImplementation(String newImplementation) { eDynamicSet(FunctionFlowPackage.FLOW_ELEMENT__IMPLEMENTATION, FunctionFlowPackage.Literals.FLOW_ELEMENT__IMPLEMENTATION, newImplementation); } /** * * * @generated */ @SuppressWarnings("unchecked") @Override public EList getErrors() { return (EList)eDynamicGet(FunctionFlowPackage.FLOW_ELEMENT__ERRORS, FunctionFlowPackage.Literals.FLOW_ELEMENT__ERRORS, true, true); } /** * * * @generated */ @Override public String getConfiguration() { return (String)eDynamicGet(FunctionFlowPackage.FLOW_ELEMENT__CONFIGURATION, FunctionFlowPackage.Literals.FLOW_ELEMENT__CONFIGURATION, true, true); } /** * * * @generated */ @Override public void setConfiguration(String newConfiguration) { eDynamicSet(FunctionFlowPackage.FLOW_ELEMENT__CONFIGURATION, FunctionFlowPackage.Literals.FLOW_ELEMENT__CONFIGURATION, newConfiguration); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case FunctionFlowPackage.FLOW_ELEMENT__IMPLEMENTATION: return getImplementation(); case FunctionFlowPackage.FLOW_ELEMENT__ERRORS: return getErrors(); case FunctionFlowPackage.FLOW_ELEMENT__CONFIGURATION: return getConfiguration(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case FunctionFlowPackage.FLOW_ELEMENT__IMPLEMENTATION: setImplementation((String)newValue); return; case FunctionFlowPackage.FLOW_ELEMENT__ERRORS: getErrors().clear(); getErrors().addAll((Collection)newValue); return; case FunctionFlowPackage.FLOW_ELEMENT__CONFIGURATION: setConfiguration((String)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case FunctionFlowPackage.FLOW_ELEMENT__IMPLEMENTATION: setImplementation(IMPLEMENTATION_EDEFAULT); return; case FunctionFlowPackage.FLOW_ELEMENT__ERRORS: getErrors().clear(); return; case FunctionFlowPackage.FLOW_ELEMENT__CONFIGURATION: setConfiguration(CONFIGURATION_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case FunctionFlowPackage.FLOW_ELEMENT__IMPLEMENTATION: return IMPLEMENTATION_EDEFAULT == null ? getImplementation() != null : !IMPLEMENTATION_EDEFAULT.equals(getImplementation()); case FunctionFlowPackage.FLOW_ELEMENT__ERRORS: return !getErrors().isEmpty(); case FunctionFlowPackage.FLOW_ELEMENT__CONFIGURATION: return CONFIGURATION_EDEFAULT == null ? getConfiguration() != null : !CONFIGURATION_EDEFAULT.equals(getConfiguration()); } return super.eIsSet(featureID); } } //FlowElementImpl




© 2015 - 2024 Weber Informatics LLC | Privacy Policy