blob: 32b4b5f8bed69a4849f4e1921623205bb040c89b [file] [log] [blame]
/**
* Copyright (c) 2012, 2015 INRIA and Mia-Software.
* 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:
* Guillaume Doux (INRIA) - Initial API and implementation
* Grégoire Dupé (Mia-Software) - Bug 483292 - [Benchmark] long must be used to store memory usage
* Grégoire Dupé (Mia-Software) - Bug 483400 - [Benchmark] The input size should be computable by the discoverer
*/
package org.eclipse.modisco.infra.discovery.benchmark.metamodel.internal.benchmark.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.modisco.infra.discovery.benchmark.metamodel.internal.benchmark.BeginEvent;
import org.eclipse.modisco.infra.discovery.benchmark.metamodel.internal.benchmark.BenchmarkPackage;
import org.eclipse.modisco.infra.discovery.benchmark.metamodel.internal.benchmark.EndEvent;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>End Event</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.modisco.infra.discovery.benchmark.metamodel.internal.benchmark.impl.EndEventImpl#getBeginning <em>Beginning</em>}</li>
* </ul>
*
* @generated
*/
public class EndEventImpl extends EventImpl implements EndEvent {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final String copyright = "Copyright (c) 2012, 2015 INRIA and Mia-Software.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Guillaume Doux (INRIA) - Initial API and implementation\r\n Grégoire Dupé (Mia-Software) - Bug 483292 - [Benchmark] long must be used to store memory usage\r\n Grégoire Dupé (Mia-Software) - Bug 483400 - [Benchmark] The input size should be computable by the discoverer\r\n";
/**
* The cached value of the '{@link #getBeginning() <em>Beginning</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getBeginning()
* @generated
* @ordered
*/
protected BeginEvent beginning;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EndEventImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return BenchmarkPackage.Literals.END_EVENT;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public BeginEvent getBeginning() {
if (beginning != null && beginning.eIsProxy()) {
InternalEObject oldBeginning = (InternalEObject)beginning;
beginning = (BeginEvent)eResolveProxy(oldBeginning);
if (beginning != oldBeginning) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, BenchmarkPackage.END_EVENT__BEGINNING, oldBeginning, beginning));
}
}
return beginning;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public BeginEvent basicGetBeginning() {
return beginning;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setBeginning(BeginEvent newBeginning) {
BeginEvent oldBeginning = beginning;
beginning = newBeginning;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, BenchmarkPackage.END_EVENT__BEGINNING, oldBeginning, beginning));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case BenchmarkPackage.END_EVENT__BEGINNING:
if (resolve) return getBeginning();
return basicGetBeginning();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case BenchmarkPackage.END_EVENT__BEGINNING:
setBeginning((BeginEvent)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case BenchmarkPackage.END_EVENT__BEGINNING:
setBeginning((BeginEvent)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case BenchmarkPackage.END_EVENT__BEGINNING:
return beginning != null;
}
return super.eIsSet(featureID);
}
} //EndEventImpl