Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests.model1/src/org/eclipse/emf/cdo/tests/model1/legacy/impl/CompanyImpl.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.model1/src/org/eclipse/emf/cdo/tests/model1/legacy/impl/CompanyImpl.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests.model1/src/org/eclipse/emf/cdo/tests/model1/legacy/impl/CompanyImpl.java b/plugins/org.eclipse.emf.cdo.tests.model1/src/org/eclipse/emf/cdo/tests/model1/legacy/impl/CompanyImpl.java
index d76ce868f9..c0f028cd08 100644
--- a/plugins/org.eclipse.emf.cdo.tests.model1/src/org/eclipse/emf/cdo/tests/model1/legacy/impl/CompanyImpl.java
+++ b/plugins/org.eclipse.emf.cdo.tests.model1/src/org/eclipse/emf/cdo/tests/model1/legacy/impl/CompanyImpl.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2013, 2015, 2016 Eike Stepper (Loehne, Germany) and others.
+ * Copyright (c) 2013, 2015, 2016, 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
@@ -117,6 +117,7 @@ public class CompanyImpl extends AddressImpl implements Company
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
+ @Override
public EList<Category> getCategories()
{
if (categories == null)
@@ -130,6 +131,7 @@ public class CompanyImpl extends AddressImpl implements Company
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
+ @Override
public EList<Supplier> getSuppliers()
{
if (suppliers == null)
@@ -143,6 +145,7 @@ public class CompanyImpl extends AddressImpl implements Company
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
+ @Override
public EList<Customer> getCustomers()
{
if (customers == null)
@@ -156,6 +159,7 @@ public class CompanyImpl extends AddressImpl implements Company
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
+ @Override
public EList<PurchaseOrder> getPurchaseOrders()
{
if (purchaseOrders == null)
@@ -169,6 +173,7 @@ public class CompanyImpl extends AddressImpl implements Company
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
+ @Override
public EList<SalesOrder> getSalesOrders()
{
if (salesOrders == null)

Back to the top