/**
  *
  * <!-- begin-user-doc -->
  * <!-- end-user-doc -->
  *
  * @generated
  */
 @Override
 public void eUnset(int featureID) {
   switch (featureID) {
     case AnalysisPackage.ANALYSIS_PARAMETERS__DATA_FILTER:
       getDataFilter().clear();
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__INDICATOR_VALIDATION_DOMAINS:
       getIndicatorValidationDomains().clear();
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__DATA_VALIDATION_DOMAINS:
       getDataValidationDomains().clear();
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__ANALYSIS_TYPE:
       setAnalysisType(ANALYSIS_TYPE_EDEFAULT);
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__DEACTIVATED_INDICATORS:
       getDeactivatedIndicators().clear();
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__EXECUTION_LANGUAGE:
       setExecutionLanguage(EXECUTION_LANGUAGE_EDEFAULT);
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__STORE_DATA:
       setStoreData(STORE_DATA_EDEFAULT);
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__MAX_NUMBER_ROWS:
       setMaxNumberRows(MAX_NUMBER_ROWS_EDEFAULT);
       return;
   }
   super.eUnset(featureID);
 }
 /**
  *
  * <!-- begin-user-doc -->
  * <!-- end-user-doc -->
  *
  * @generated
  */
 @SuppressWarnings("unchecked")
 @Override
 public void eSet(int featureID, Object newValue) {
   switch (featureID) {
     case AnalysisPackage.ANALYSIS_PARAMETERS__DATA_FILTER:
       getDataFilter().clear();
       getDataFilter().addAll((Collection<? extends Domain>) newValue);
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__INDICATOR_VALIDATION_DOMAINS:
       getIndicatorValidationDomains().clear();
       getIndicatorValidationDomains().addAll((Collection<? extends Domain>) newValue);
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__DATA_VALIDATION_DOMAINS:
       getDataValidationDomains().clear();
       getDataValidationDomains().addAll((Collection<? extends Domain>) newValue);
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__ANALYSIS_TYPE:
       setAnalysisType((AnalysisType) newValue);
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__DEACTIVATED_INDICATORS:
       getDeactivatedIndicators().clear();
       getDeactivatedIndicators().addAll((Collection<? extends Indicator>) newValue);
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__EXECUTION_LANGUAGE:
       setExecutionLanguage((ExecutionLanguage) newValue);
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__STORE_DATA:
       setStoreData((Boolean) newValue);
       return;
     case AnalysisPackage.ANALYSIS_PARAMETERS__MAX_NUMBER_ROWS:
       setMaxNumberRows((Integer) newValue);
       return;
   }
   super.eSet(featureID, newValue);
 }