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/impl/HasNillableAttributeImpl.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.model6/src/org/eclipse/emf/cdo/tests/model6/impl/HasNillableAttributeImpl.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests.model6/src/org/eclipse/emf/cdo/tests/model6/impl/HasNillableAttributeImpl.java b/plugins/org.eclipse.emf.cdo.tests.model6/src/org/eclipse/emf/cdo/tests/model6/impl/HasNillableAttributeImpl.java
index 336bd3b8c2..fc070648b6 100644
--- a/plugins/org.eclipse.emf.cdo.tests.model6/src/org/eclipse/emf/cdo/tests/model6/impl/HasNillableAttributeImpl.java
+++ b/plugins/org.eclipse.emf.cdo.tests.model6/src/org/eclipse/emf/cdo/tests/model6/impl/HasNillableAttributeImpl.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2013, 2015 Eike Stepper (Loehne, Germany) and others.
+ * Copyright (c) 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
@@ -69,6 +69,7 @@ public class HasNillableAttributeImpl extends CDOObjectImpl implements HasNillab
* <!-- end-user-doc -->
* @generated
*/
+ @Override
public String getNillable()
{
return (String)eGet(Model6Package.Literals.HAS_NILLABLE_ATTRIBUTE__NILLABLE, true);
@@ -79,6 +80,7 @@ public class HasNillableAttributeImpl extends CDOObjectImpl implements HasNillab
* <!-- end-user-doc -->
* @generated
*/
+ @Override
public void setNillable(String newNillable)
{
eSet(Model6Package.Literals.HAS_NILLABLE_ATTRIBUTE__NILLABLE, newNillable);
@@ -89,6 +91,7 @@ public class HasNillableAttributeImpl extends CDOObjectImpl implements HasNillab
* <!-- end-user-doc -->
* @generated
*/
+ @Override
public void unsetNillable()
{
eUnset(Model6Package.Literals.HAS_NILLABLE_ATTRIBUTE__NILLABLE);
@@ -99,6 +102,7 @@ public class HasNillableAttributeImpl extends CDOObjectImpl implements HasNillab
* <!-- end-user-doc -->
* @generated
*/
+ @Override
public boolean isSetNillable()
{
return eIsSet(Model6Package.Literals.HAS_NILLABLE_ATTRIBUTE__NILLABLE);

Back to the top