blob: 841d459c4dcaa119d7c74a7ee809be0f0d2d6967 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Xored Software Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.core.ecl.core.model.impl;
import org.eclipse.rcptt.core.ecl.core.model.PerspectiveInfo;
import org.eclipse.rcptt.core.ecl.core.model.PerspectivesList;
import org.eclipse.rcptt.core.ecl.core.model.Q7CorePackage;
import java.util.Collection;
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.EObjectImpl;
import org.eclipse.emf.ecore.util.EObjectContainmentEList;
import org.eclipse.emf.ecore.util.InternalEList;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Perspectives List</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.rcptt.core.ecl.core.model.impl.PerspectivesListImpl#getPerspectives <em>Perspectives</em>}</li>
* </ul>
*
* @generated
*/
public class PerspectivesListImpl extends EObjectImpl implements PerspectivesList {
/**
* The cached value of the '{@link #getPerspectives() <em>Perspectives</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getPerspectives()
* @generated
* @ordered
*/
protected EList<PerspectiveInfo> perspectives;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected PerspectivesListImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return Q7CorePackage.Literals.PERSPECTIVES_LIST;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<PerspectiveInfo> getPerspectives() {
if (perspectives == null) {
perspectives = new EObjectContainmentEList<PerspectiveInfo>(PerspectiveInfo.class, this, Q7CorePackage.PERSPECTIVES_LIST__PERSPECTIVES);
}
return perspectives;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case Q7CorePackage.PERSPECTIVES_LIST__PERSPECTIVES:
return ((InternalEList<?>)getPerspectives()).basicRemove(otherEnd, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case Q7CorePackage.PERSPECTIVES_LIST__PERSPECTIVES:
return getPerspectives();
}
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 Q7CorePackage.PERSPECTIVES_LIST__PERSPECTIVES:
getPerspectives().clear();
getPerspectives().addAll((Collection<? extends PerspectiveInfo>)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case Q7CorePackage.PERSPECTIVES_LIST__PERSPECTIVES:
getPerspectives().clear();
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case Q7CorePackage.PERSPECTIVES_LIST__PERSPECTIVES:
return perspectives != null && !perspectives.isEmpty();
}
return super.eIsSet(featureID);
}
} //PerspectivesListImpl