blob: c1b50b1b06873df998abae54a0a767ffe66f1100 [file] [log] [blame]
/**
* Copyright (c) 2017 Christian W. Damus and others.
*
* 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:
* Christian W. Damus - initial API and implementation
*
*/
package org.eclipse.papyrus.compare.uml2.tests.elements.impl;
import org.eclipse.emf.common.notify.Notification;
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.papyrus.compare.uml2.tests.elements.ElementsPackage;
import org.eclipse.papyrus.compare.uml2.tests.elements.Viewpoint;
/**
* <!-- begin-user-doc --> An implementation of the model object '<em><b>Viewpoint</b></em>'. <!--
* end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.compare.uml2.tests.elements.impl.ViewpointImpl#getBase_Class <em>Base
* Class</em>}</li>
* <li>{@link org.eclipse.papyrus.compare.uml2.tests.elements.impl.ViewpointImpl#getPurpose
* <em>Purpose</em>}</li>
* </ul>
*
* @generated
*/
public class ViewpointImpl extends MinimalEObjectImpl.Container implements Viewpoint {
/**
* The cached value of the '{@link #getBase_Class() <em>Base Class</em>}' reference. <!-- begin-user-doc
* --> <!-- end-user-doc -->
*
* @see #getBase_Class()
* @generated
* @ordered
*/
protected org.eclipse.uml2.uml.Class base_Class;
/**
* The default value of the '{@link #getPurpose() <em>Purpose</em>}' attribute. <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @see #getPurpose()
* @generated
* @ordered
*/
protected static final String PURPOSE_EDEFAULT = null;
/**
* The cached value of the '{@link #getPurpose() <em>Purpose</em>}' attribute. <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @see #getPurpose()
* @generated
* @ordered
*/
protected String purpose = PURPOSE_EDEFAULT;
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
protected ViewpointImpl() {
super();
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return ElementsPackage.Literals.VIEWPOINT;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public org.eclipse.uml2.uml.Class getBase_Class() {
if (base_Class != null && base_Class.eIsProxy()) {
InternalEObject oldBase_Class = (InternalEObject)base_Class;
base_Class = (org.eclipse.uml2.uml.Class)eResolveProxy(oldBase_Class);
if (base_Class != oldBase_Class) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE,
ElementsPackage.VIEWPOINT__BASE_CLASS, oldBase_Class, base_Class));
}
}
return base_Class;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public org.eclipse.uml2.uml.Class basicGetBase_Class() {
return base_Class;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public void setBase_Class(org.eclipse.uml2.uml.Class newBase_Class) {
org.eclipse.uml2.uml.Class oldBase_Class = base_Class;
base_Class = newBase_Class;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, ElementsPackage.VIEWPOINT__BASE_CLASS,
oldBase_Class, base_Class));
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public String getPurpose() {
return purpose;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public void setPurpose(String newPurpose) {
String oldPurpose = purpose;
purpose = newPurpose;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, ElementsPackage.VIEWPOINT__PURPOSE,
oldPurpose, purpose));
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case ElementsPackage.VIEWPOINT__BASE_CLASS:
if (resolve)
return getBase_Class();
return basicGetBase_Class();
case ElementsPackage.VIEWPOINT__PURPOSE:
return getPurpose();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case ElementsPackage.VIEWPOINT__BASE_CLASS:
setBase_Class((org.eclipse.uml2.uml.Class)newValue);
return;
case ElementsPackage.VIEWPOINT__PURPOSE:
setPurpose((String)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case ElementsPackage.VIEWPOINT__BASE_CLASS:
setBase_Class((org.eclipse.uml2.uml.Class)null);
return;
case ElementsPackage.VIEWPOINT__PURPOSE:
setPurpose(PURPOSE_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case ElementsPackage.VIEWPOINT__BASE_CLASS:
return base_Class != null;
case ElementsPackage.VIEWPOINT__PURPOSE:
return PURPOSE_EDEFAULT == null ? purpose != null : !PURPOSE_EDEFAULT.equals(purpose);
}
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(" (purpose: "); //$NON-NLS-1$
result.append(purpose);
result.append(')');
return result.toString();
}
} // ViewpointImpl