Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/impl/BindingEndPointImpl.java')
-rw-r--r--plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/impl/BindingEndPointImpl.java72
1 files changed, 0 insertions, 72 deletions
diff --git a/plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/impl/BindingEndPointImpl.java b/plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/impl/BindingEndPointImpl.java
index aeda0c76b..57796bf66 100644
--- a/plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/impl/BindingEndPointImpl.java
+++ b/plugins/org.eclipse.etrice.core.room/src-gen/org/eclipse/etrice/core/room/impl/BindingEndPointImpl.java
@@ -14,7 +14,6 @@ import org.eclipse.etrice.core.room.ActorContainerRef;
import org.eclipse.etrice.core.room.BindingEndPoint;
import org.eclipse.etrice.core.room.Port;
import org.eclipse.etrice.core.room.RoomPackage;
-import org.eclipse.etrice.core.room.SubProtocol;
/**
* <!-- begin-user-doc -->
@@ -26,7 +25,6 @@ import org.eclipse.etrice.core.room.SubProtocol;
* <ul>
* <li>{@link org.eclipse.etrice.core.room.impl.BindingEndPointImpl#getActorRef <em>Actor Ref</em>}</li>
* <li>{@link org.eclipse.etrice.core.room.impl.BindingEndPointImpl#getPort <em>Port</em>}</li>
- * <li>{@link org.eclipse.etrice.core.room.impl.BindingEndPointImpl#getSub <em>Sub</em>}</li>
* </ul>
*
* @generated
@@ -54,16 +52,6 @@ public class BindingEndPointImpl extends MinimalEObjectImpl.Container implements
protected Port port;
/**
- * The cached value of the '{@link #getSub() <em>Sub</em>}' reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @see #getSub()
- * @generated
- * @ordered
- */
- protected SubProtocol sub;
-
- /**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
@@ -89,7 +77,6 @@ public class BindingEndPointImpl extends MinimalEObjectImpl.Container implements
* <!-- end-user-doc -->
* @generated
*/
- @Override
public ActorContainerRef getActorRef()
{
if (actorRef != null && actorRef.eIsProxy())
@@ -120,7 +107,6 @@ public class BindingEndPointImpl extends MinimalEObjectImpl.Container implements
* <!-- end-user-doc -->
* @generated
*/
- @Override
public void setActorRef(ActorContainerRef newActorRef)
{
ActorContainerRef oldActorRef = actorRef;
@@ -134,7 +120,6 @@ public class BindingEndPointImpl extends MinimalEObjectImpl.Container implements
* <!-- end-user-doc -->
* @generated
*/
- @Override
public Port getPort()
{
if (port != null && port.eIsProxy())
@@ -165,7 +150,6 @@ public class BindingEndPointImpl extends MinimalEObjectImpl.Container implements
* <!-- end-user-doc -->
* @generated
*/
- @Override
public void setPort(Port newPort)
{
Port oldPort = port;
@@ -180,51 +164,6 @@ public class BindingEndPointImpl extends MinimalEObjectImpl.Container implements
* @generated
*/
@Override
- public SubProtocol getSub()
- {
- if (sub != null && sub.eIsProxy())
- {
- InternalEObject oldSub = (InternalEObject)sub;
- sub = (SubProtocol)eResolveProxy(oldSub);
- if (sub != oldSub)
- {
- if (eNotificationRequired())
- eNotify(new ENotificationImpl(this, Notification.RESOLVE, RoomPackage.BINDING_END_POINT__SUB, oldSub, sub));
- }
- }
- return sub;
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- public SubProtocol basicGetSub()
- {
- return sub;
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- @Override
- public void setSub(SubProtocol newSub)
- {
- SubProtocol oldSub = sub;
- sub = newSub;
- if (eNotificationRequired())
- eNotify(new ENotificationImpl(this, Notification.SET, RoomPackage.BINDING_END_POINT__SUB, oldSub, sub));
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- @Override
public Object eGet(int featureID, boolean resolve, boolean coreType)
{
switch (featureID)
@@ -235,9 +174,6 @@ public class BindingEndPointImpl extends MinimalEObjectImpl.Container implements
case RoomPackage.BINDING_END_POINT__PORT:
if (resolve) return getPort();
return basicGetPort();
- case RoomPackage.BINDING_END_POINT__SUB:
- if (resolve) return getSub();
- return basicGetSub();
}
return super.eGet(featureID, resolve, coreType);
}
@@ -258,9 +194,6 @@ public class BindingEndPointImpl extends MinimalEObjectImpl.Container implements
case RoomPackage.BINDING_END_POINT__PORT:
setPort((Port)newValue);
return;
- case RoomPackage.BINDING_END_POINT__SUB:
- setSub((SubProtocol)newValue);
- return;
}
super.eSet(featureID, newValue);
}
@@ -281,9 +214,6 @@ public class BindingEndPointImpl extends MinimalEObjectImpl.Container implements
case RoomPackage.BINDING_END_POINT__PORT:
setPort((Port)null);
return;
- case RoomPackage.BINDING_END_POINT__SUB:
- setSub((SubProtocol)null);
- return;
}
super.eUnset(featureID);
}
@@ -302,8 +232,6 @@ public class BindingEndPointImpl extends MinimalEObjectImpl.Container implements
return actorRef != null;
case RoomPackage.BINDING_END_POINT__PORT:
return port != null;
- case RoomPackage.BINDING_END_POINT__SUB:
- return sub != null;
}
return super.eIsSet(featureID);
}

Back to the top