Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.dawn.codegen.dawngenmodel/src/org/eclipse/emf/cdo/dawn/codegen/dawngenmodel/impl/DawnGeneratorImpl.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.dawn.codegen.dawngenmodel/src/org/eclipse/emf/cdo/dawn/codegen/dawngenmodel/impl/DawnGeneratorImpl.java15
1 files changed, 5 insertions, 10 deletions
diff --git a/plugins/org.eclipse.emf.cdo.dawn.codegen.dawngenmodel/src/org/eclipse/emf/cdo/dawn/codegen/dawngenmodel/impl/DawnGeneratorImpl.java b/plugins/org.eclipse.emf.cdo.dawn.codegen.dawngenmodel/src/org/eclipse/emf/cdo/dawn/codegen/dawngenmodel/impl/DawnGeneratorImpl.java
index e226d53a2f..31dee57e36 100644
--- a/plugins/org.eclipse.emf.cdo.dawn.codegen.dawngenmodel/src/org/eclipse/emf/cdo/dawn/codegen/dawngenmodel/impl/DawnGeneratorImpl.java
+++ b/plugins/org.eclipse.emf.cdo.dawn.codegen.dawngenmodel/src/org/eclipse/emf/cdo/dawn/codegen/dawngenmodel/impl/DawnGeneratorImpl.java
@@ -139,8 +139,7 @@ public class DawnGeneratorImpl extends EObjectImpl implements DawnGenerator
conflictColor = newConflictColor;
if (eNotificationRequired())
{
- eNotify(new ENotificationImpl(this, Notification.SET, DawngenmodelPackage.DAWN_GENERATOR__CONFLICT_COLOR,
- oldConflictColor, conflictColor));
+ eNotify(new ENotificationImpl(this, Notification.SET, DawngenmodelPackage.DAWN_GENERATOR__CONFLICT_COLOR, oldConflictColor, conflictColor));
}
}
@@ -165,8 +164,7 @@ public class DawnGeneratorImpl extends EObjectImpl implements DawnGenerator
localLockColor = newLocalLockColor;
if (eNotificationRequired())
{
- eNotify(new ENotificationImpl(this, Notification.SET, DawngenmodelPackage.DAWN_GENERATOR__LOCAL_LOCK_COLOR,
- oldLocalLockColor, localLockColor));
+ eNotify(new ENotificationImpl(this, Notification.SET, DawngenmodelPackage.DAWN_GENERATOR__LOCAL_LOCK_COLOR, oldLocalLockColor, localLockColor));
}
}
@@ -191,8 +189,7 @@ public class DawnGeneratorImpl extends EObjectImpl implements DawnGenerator
remoteLockColor = newRemoteLockColor;
if (eNotificationRequired())
{
- eNotify(new ENotificationImpl(this, Notification.SET, DawngenmodelPackage.DAWN_GENERATOR__REMOTE_LOCK_COLOR,
- oldRemoteLockColor, remoteLockColor));
+ eNotify(new ENotificationImpl(this, Notification.SET, DawngenmodelPackage.DAWN_GENERATOR__REMOTE_LOCK_COLOR, oldRemoteLockColor, remoteLockColor));
}
}
@@ -275,11 +272,9 @@ public class DawnGeneratorImpl extends EObjectImpl implements DawnGenerator
case DawngenmodelPackage.DAWN_GENERATOR__CONFLICT_COLOR:
return CONFLICT_COLOR_EDEFAULT == null ? conflictColor != null : !CONFLICT_COLOR_EDEFAULT.equals(conflictColor);
case DawngenmodelPackage.DAWN_GENERATOR__LOCAL_LOCK_COLOR:
- return LOCAL_LOCK_COLOR_EDEFAULT == null ? localLockColor != null
- : !LOCAL_LOCK_COLOR_EDEFAULT.equals(localLockColor);
+ return LOCAL_LOCK_COLOR_EDEFAULT == null ? localLockColor != null : !LOCAL_LOCK_COLOR_EDEFAULT.equals(localLockColor);
case DawngenmodelPackage.DAWN_GENERATOR__REMOTE_LOCK_COLOR:
- return REMOTE_LOCK_COLOR_EDEFAULT == null ? remoteLockColor != null
- : !REMOTE_LOCK_COLOR_EDEFAULT.equals(remoteLockColor);
+ return REMOTE_LOCK_COLOR_EDEFAULT == null ? remoteLockColor != null : !REMOTE_LOCK_COLOR_EDEFAULT.equals(remoteLockColor);
}
return super.eIsSet(featureID);
}

Back to the top