Package fr.obeo.releng.targetplatform.impl

Source Code of fr.obeo.releng.targetplatform.impl.OptionsImpl

/**
*/
package fr.obeo.releng.targetplatform.impl;

import fr.obeo.releng.targetplatform.Option;
import fr.obeo.releng.targetplatform.Options;
import fr.obeo.releng.targetplatform.TargetPlatform;
import fr.obeo.releng.targetplatform.TargetPlatformPackage;

import java.util.Collection;

import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;

import org.eclipse.emf.common.util.EList;

import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;

import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.MinimalEObjectImpl;

import org.eclipse.emf.ecore.util.EDataTypeEList;
import org.eclipse.emf.ecore.util.EcoreUtil;

/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Options</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
*   <li>{@link fr.obeo.releng.targetplatform.impl.OptionsImpl#getTargetPlatform <em>Target Platform</em>}</li>
*   <li>{@link fr.obeo.releng.targetplatform.impl.OptionsImpl#getOptions <em>Options</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class OptionsImpl extends MinimalEObjectImpl.Container implements Options {
  /**
   * The cached value of the '{@link #getOptions() <em>Options</em>}' attribute list.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @see #getOptions()
   * @generated
   * @ordered
   */
  protected EList<Option> options;

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  protected OptionsImpl() {
    super();
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  @Override
  protected EClass eStaticClass() {
    return TargetPlatformPackage.Literals.OPTIONS;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public TargetPlatform getTargetPlatform() {
    if (eContainerFeatureID() != TargetPlatformPackage.OPTIONS__TARGET_PLATFORM) return null;
    return (TargetPlatform)eContainer();
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public TargetPlatform basicGetTargetPlatform() {
    if (eContainerFeatureID() != TargetPlatformPackage.OPTIONS__TARGET_PLATFORM) return null;
    return (TargetPlatform)eInternalContainer();
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetTargetPlatform(TargetPlatform newTargetPlatform, NotificationChain msgs) {
    msgs = eBasicSetContainer((InternalEObject)newTargetPlatform, TargetPlatformPackage.OPTIONS__TARGET_PLATFORM, msgs);
    return msgs;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setTargetPlatform(TargetPlatform newTargetPlatform) {
    if (newTargetPlatform != eInternalContainer() || (eContainerFeatureID() != TargetPlatformPackage.OPTIONS__TARGET_PLATFORM && newTargetPlatform != null)) {
      if (EcoreUtil.isAncestor(this, newTargetPlatform))
        throw new IllegalArgumentException("Recursive containment not allowed for " + toString());
      NotificationChain msgs = null;
      if (eInternalContainer() != null)
        msgs = eBasicRemoveFromContainer(msgs);
      if (newTargetPlatform != null)
        msgs = ((InternalEObject)newTargetPlatform).eInverseAdd(this, TargetPlatformPackage.TARGET_PLATFORM__CONTENTS, TargetPlatform.class, msgs);
      msgs = basicSetTargetPlatform(newTargetPlatform, msgs);
      if (msgs != null) msgs.dispatch();
    }
    else if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, TargetPlatformPackage.OPTIONS__TARGET_PLATFORM, newTargetPlatform, newTargetPlatform));
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public EList<Option> getOptions() {
    if (options == null) {
      options = new EDataTypeEList<Option>(Option.class, this, TargetPlatformPackage.OPTIONS__OPTIONS);
    }
    return options;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  @Override
  public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
    switch (featureID) {
      case TargetPlatformPackage.OPTIONS__TARGET_PLATFORM:
        if (eInternalContainer() != null)
          msgs = eBasicRemoveFromContainer(msgs);
        return basicSetTargetPlatform((TargetPlatform)otherEnd, msgs);
    }
    return super.eInverseAdd(otherEnd, featureID, msgs);
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  @Override
  public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
    switch (featureID) {
      case TargetPlatformPackage.OPTIONS__TARGET_PLATFORM:
        return basicSetTargetPlatform(null, msgs);
    }
    return super.eInverseRemove(otherEnd, featureID, msgs);
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  @Override
  public NotificationChain eBasicRemoveFromContainerFeature(NotificationChain msgs) {
    switch (eContainerFeatureID()) {
      case TargetPlatformPackage.OPTIONS__TARGET_PLATFORM:
        return eInternalContainer().eInverseRemove(this, TargetPlatformPackage.TARGET_PLATFORM__CONTENTS, TargetPlatform.class, msgs);
    }
    return super.eBasicRemoveFromContainerFeature(msgs);
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  @Override
  public Object eGet(int featureID, boolean resolve, boolean coreType) {
    switch (featureID) {
      case TargetPlatformPackage.OPTIONS__TARGET_PLATFORM:
        if (resolve) return getTargetPlatform();
        return basicGetTargetPlatform();
      case TargetPlatformPackage.OPTIONS__OPTIONS:
        return getOptions();
    }
    return super.eGet(featureID, resolve, coreType);
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  @SuppressWarnings("unchecked")
  @Override
  public void eSet(int featureID, Object newValue) {
    switch (featureID) {
      case TargetPlatformPackage.OPTIONS__TARGET_PLATFORM:
        setTargetPlatform((TargetPlatform)newValue);
        return;
      case TargetPlatformPackage.OPTIONS__OPTIONS:
        getOptions().clear();
        getOptions().addAll((Collection<? extends Option>)newValue);
        return;
    }
    super.eSet(featureID, newValue);
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  @Override
  public void eUnset(int featureID) {
    switch (featureID) {
      case TargetPlatformPackage.OPTIONS__TARGET_PLATFORM:
        setTargetPlatform((TargetPlatform)null);
        return;
      case TargetPlatformPackage.OPTIONS__OPTIONS:
        getOptions().clear();
        return;
    }
    super.eUnset(featureID);
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  @Override
  public boolean eIsSet(int featureID) {
    switch (featureID) {
      case TargetPlatformPackage.OPTIONS__TARGET_PLATFORM:
        return basicGetTargetPlatform() != null;
      case TargetPlatformPackage.OPTIONS__OPTIONS:
        return options != null && !options.isEmpty();
    }
    return super.eIsSet(featureID);
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  @Override
  public String toString() {
    if (eIsProxy()) return super.toString();

    StringBuffer result = new StringBuffer(super.toString());
    result.append(" (options: ");
    result.append(options);
    result.append(')');
    return result.toString();
  }

} //OptionsImpl
TOP

Related Classes of fr.obeo.releng.targetplatform.impl.OptionsImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.