/** * <copyright> * </copyright> * * $Id$ */ package bowling.impl; import bowling.BowlingPackage; import bowling.Matchup; import bowling.Tournament; import bowling.TournamentType; 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.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>Tournament</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link bowling.impl.TournamentImpl#getMatchups <em>Matchups</em>}</li> * <li>{@link bowling.impl.TournamentImpl#getType <em>Type</em>}</li> * </ul> * </p> * * @generated */ public class TournamentImpl extends EObjectImpl implements Tournament { /** * The cached value of the '{@link #getMatchups() <em>Matchups</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getMatchups() * @generated * @ordered */ protected EList<Matchup> matchups; /** * The default value of the '{@link #getType() <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected static final TournamentType TYPE_EDEFAULT = TournamentType.PRO; /** * The cached value of the '{@link #getType() <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected TournamentType type = TYPE_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected TournamentImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return BowlingPackage.Literals.TOURNAMENT; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Matchup> getMatchups() { if (matchups == null) { matchups = new EObjectContainmentEList<Matchup>(Matchup.class, this, BowlingPackage.TOURNAMENT__MATCHUPS); } return matchups; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public TournamentType getType() { return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setType(TournamentType newType) { TournamentType oldType = type; type = newType == null ? TYPE_EDEFAULT : newType; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, BowlingPackage.TOURNAMENT__TYPE, oldType, type)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case BowlingPackage.TOURNAMENT__MATCHUPS: return ((InternalEList<?>)getMatchups()).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 BowlingPackage.TOURNAMENT__MATCHUPS: return getMatchups(); case BowlingPackage.TOURNAMENT__TYPE: return getType(); } 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 BowlingPackage.TOURNAMENT__MATCHUPS: getMatchups().clear(); getMatchups().addAll((Collection<? extends Matchup>)newValue); return; case BowlingPackage.TOURNAMENT__TYPE: setType((TournamentType)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case BowlingPackage.TOURNAMENT__MATCHUPS: getMatchups().clear(); return; case BowlingPackage.TOURNAMENT__TYPE: setType(TYPE_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case BowlingPackage.TOURNAMENT__MATCHUPS: return matchups != null && !matchups.isEmpty(); case BowlingPackage.TOURNAMENT__TYPE: return type != TYPE_EDEFAULT; } 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(" (type: "); result.append(type); result.append(')'); return result.toString(); } } //TournamentImpl