| 1 | /** |
| 2 | * <copyright> |
| 3 | * </copyright> |
| 4 | * |
| 5 | * $Id$ |
| 6 | */ |
| 7 | package de.uka.ipd.sdq.pipesandfilters.impl; |
| 8 | |
| 9 | import de.uka.ipd.sdq.pipesandfilters.Filter; |
| 10 | import de.uka.ipd.sdq.pipesandfilters.PipeElement; |
| 11 | import de.uka.ipd.sdq.pipesandfilters.pipesandfiltersPackage; |
| 12 | |
| 13 | import java.util.Collection; |
| 14 | |
| 15 | import org.eclipse.emf.common.util.EList; |
| 16 | |
| 17 | import org.eclipse.emf.ecore.EClass; |
| 18 | |
| 19 | import org.eclipse.emf.ecore.util.EObjectResolvingEList; |
| 20 | |
| 21 | /** |
| 22 | * <!-- begin-user-doc --> |
| 23 | * An implementation of the model object '<em><b>Filter</b></em>'. |
| 24 | * <!-- end-user-doc --> |
| 25 | * <p> |
| 26 | * The following features are implemented: |
| 27 | * <ul> |
| 28 | * <li>{@link de.uka.ipd.sdq.pipesandfilters.impl.FilterImpl#getSuccessors <em>Successors</em>}</li> |
| 29 | * </ul> |
| 30 | * </p> |
| 31 | * |
| 32 | * @generated |
| 33 | */ |
| 34 | public abstract class FilterImpl extends PipeElementImpl implements Filter { |
| 35 | /** |
| 36 | * The cached value of the '{@link #getSuccessors() <em>Successors</em>}' reference list. |
| 37 | * <!-- begin-user-doc --> |
| 38 | * <!-- end-user-doc --> |
| 39 | * @see #getSuccessors() |
| 40 | * @generated |
| 41 | * @ordered |
| 42 | */ |
| 43 | protected EList<PipeElement> successors; |
| 44 | |
| 45 | /** |
| 46 | * <!-- begin-user-doc --> |
| 47 | * <!-- end-user-doc --> |
| 48 | * @generated |
| 49 | */ |
| 50 | protected FilterImpl() { |
| 51 | super(); |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * <!-- begin-user-doc --> |
| 56 | * <!-- end-user-doc --> |
| 57 | * @generated |
| 58 | */ |
| 59 | @Override |
| 60 | protected EClass eStaticClass() { |
| 61 | return pipesandfiltersPackage.Literals.FILTER; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * <!-- begin-user-doc --> |
| 66 | * <!-- end-user-doc --> |
| 67 | * @generated |
| 68 | */ |
| 69 | public EList<PipeElement> getSuccessors() { |
| 70 | if (successors == null) { |
| 71 | successors = new EObjectResolvingEList<PipeElement>(PipeElement.class, this, pipesandfiltersPackage.FILTER__SUCCESSORS); |
| 72 | } |
| 73 | return successors; |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * <!-- begin-user-doc --> |
| 78 | * <!-- end-user-doc --> |
| 79 | * @generated |
| 80 | */ |
| 81 | @Override |
| 82 | public Object eGet(int featureID, boolean resolve, boolean coreType) { |
| 83 | switch (featureID) { |
| 84 | case pipesandfiltersPackage.FILTER__SUCCESSORS: |
| 85 | return getSuccessors(); |
| 86 | } |
| 87 | return super.eGet(featureID, resolve, coreType); |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * <!-- begin-user-doc --> |
| 92 | * <!-- end-user-doc --> |
| 93 | * @generated |
| 94 | */ |
| 95 | @SuppressWarnings("unchecked") |
| 96 | @Override |
| 97 | public void eSet(int featureID, Object newValue) { |
| 98 | switch (featureID) { |
| 99 | case pipesandfiltersPackage.FILTER__SUCCESSORS: |
| 100 | getSuccessors().clear(); |
| 101 | getSuccessors().addAll((Collection<? extends PipeElement>)newValue); |
| 102 | return; |
| 103 | } |
| 104 | super.eSet(featureID, newValue); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * <!-- begin-user-doc --> |
| 109 | * <!-- end-user-doc --> |
| 110 | * @generated |
| 111 | */ |
| 112 | @Override |
| 113 | public void eUnset(int featureID) { |
| 114 | switch (featureID) { |
| 115 | case pipesandfiltersPackage.FILTER__SUCCESSORS: |
| 116 | getSuccessors().clear(); |
| 117 | return; |
| 118 | } |
| 119 | super.eUnset(featureID); |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * <!-- begin-user-doc --> |
| 124 | * <!-- end-user-doc --> |
| 125 | * @generated |
| 126 | */ |
| 127 | @Override |
| 128 | public boolean eIsSet(int featureID) { |
| 129 | switch (featureID) { |
| 130 | case pipesandfiltersPackage.FILTER__SUCCESSORS: |
| 131 | return successors != null && !successors.isEmpty(); |
| 132 | } |
| 133 | return super.eIsSet(featureID); |
| 134 | } |
| 135 | |
| 136 | } //FilterImpl |