Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests.model6/src/org/eclipse/emf/cdo/tests/model6/legacy/impl/EmptyStringDefaultUnsettableImpl.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.model6/src/org/eclipse/emf/cdo/tests/model6/legacy/impl/EmptyStringDefaultUnsettableImpl.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests.model6/src/org/eclipse/emf/cdo/tests/model6/legacy/impl/EmptyStringDefaultUnsettableImpl.java b/plugins/org.eclipse.emf.cdo.tests.model6/src/org/eclipse/emf/cdo/tests/model6/legacy/impl/EmptyStringDefaultUnsettableImpl.java
index a6d4d1c7d7..2fc3c389ea 100644
--- a/plugins/org.eclipse.emf.cdo.tests.model6/src/org/eclipse/emf/cdo/tests/model6/legacy/impl/EmptyStringDefaultUnsettableImpl.java
+++ b/plugins/org.eclipse.emf.cdo.tests.model6/src/org/eclipse/emf/cdo/tests/model6/legacy/impl/EmptyStringDefaultUnsettableImpl.java
@@ -105,10 +105,8 @@ public class EmptyStringDefaultUnsettableImpl extends EObjectImpl implements Emp
boolean oldAttributeESet = attributeESet;
attributeESet = true;
if (eNotificationRequired())
- {
eNotify(new ENotificationImpl(this, Notification.SET, Model6Package.EMPTY_STRING_DEFAULT_UNSETTABLE__ATTRIBUTE,
oldAttribute, attribute, !oldAttributeESet));
- }
}
/**
@@ -123,10 +121,8 @@ public class EmptyStringDefaultUnsettableImpl extends EObjectImpl implements Emp
attribute = ATTRIBUTE_EDEFAULT;
attributeESet = false;
if (eNotificationRequired())
- {
eNotify(new ENotificationImpl(this, Notification.UNSET, Model6Package.EMPTY_STRING_DEFAULT_UNSETTABLE__ATTRIBUTE,
oldAttribute, ATTRIBUTE_EDEFAULT, oldAttributeESet));
- }
}
/**
@@ -214,20 +210,14 @@ public class EmptyStringDefaultUnsettableImpl extends EObjectImpl implements Emp
public String toString()
{
if (eIsProxy())
- {
return super.toString();
- }
StringBuffer result = new StringBuffer(super.toString());
result.append(" (attribute: ");
if (attributeESet)
- {
result.append(attribute);
- }
else
- {
result.append("<unset>");
- }
result.append(')');
return result.toString();
}

Back to the top