Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests.model2/src/org/eclipse/emf/cdo/tests/model2/impl/StringToAddressContainmentMapImpl.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.model2/src/org/eclipse/emf/cdo/tests/model2/impl/StringToAddressContainmentMapImpl.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests.model2/src/org/eclipse/emf/cdo/tests/model2/impl/StringToAddressContainmentMapImpl.java b/plugins/org.eclipse.emf.cdo.tests.model2/src/org/eclipse/emf/cdo/tests/model2/impl/StringToAddressContainmentMapImpl.java
index 055feccdbe..8530a3c1a7 100644
--- a/plugins/org.eclipse.emf.cdo.tests.model2/src/org/eclipse/emf/cdo/tests/model2/impl/StringToAddressContainmentMapImpl.java
+++ b/plugins/org.eclipse.emf.cdo.tests.model2/src/org/eclipse/emf/cdo/tests/model2/impl/StringToAddressContainmentMapImpl.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2010-2013, 2015 Eike Stepper (Loehne, Germany) and others.
+ * Copyright (c) 2010-2013, 2015, 2019 Eike Stepper (Loehne, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -112,6 +112,7 @@ public class StringToAddressContainmentMapImpl extends CDOObjectImpl implements
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
+ @Override
public int getHash()
{
if (hash == -1)
@@ -126,6 +127,7 @@ public class StringToAddressContainmentMapImpl extends CDOObjectImpl implements
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
+ @Override
public void setHash(int hash)
{
this.hash = hash;
@@ -135,6 +137,7 @@ public class StringToAddressContainmentMapImpl extends CDOObjectImpl implements
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
+ @Override
public String getKey()
{
return getTypedKey();
@@ -144,6 +147,7 @@ public class StringToAddressContainmentMapImpl extends CDOObjectImpl implements
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
+ @Override
public void setKey(String key)
{
setTypedKey(key);
@@ -153,6 +157,7 @@ public class StringToAddressContainmentMapImpl extends CDOObjectImpl implements
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
+ @Override
public Address getValue()
{
return getTypedValue();
@@ -162,6 +167,7 @@ public class StringToAddressContainmentMapImpl extends CDOObjectImpl implements
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
+ @Override
public Address setValue(Address value)
{
Address oldValue = getValue();

Back to the top