From 19045b71b2cf1fd4cfa51ec3b31f0974b020a2db Mon Sep 17 00:00:00 2001 From: Eike Stepper Date: Fri, 31 Jul 2009 11:16:31 +0000 Subject: [284834] [Releng] Migrate Net4j and CDO builds to Athena/Hudson https://bugs.eclipse.org/bugs/show_bug.cgi?id=284834 --- .../eclipse/emf/cdo/examples/company/Address.java | 117 ++ .../eclipse/emf/cdo/examples/company/Category.java | 98 ++ .../eclipse/emf/cdo/examples/company/Company.java | 121 ++ .../emf/cdo/examples/company/CompanyFactory.java | 134 ++ .../emf/cdo/examples/company/CompanyPackage.java | 1445 ++++++++++++++++++++ .../eclipse/emf/cdo/examples/company/Customer.java | 55 + .../eclipse/emf/cdo/examples/company/Order.java | 56 + .../emf/cdo/examples/company/OrderAddress.java | 62 + .../emf/cdo/examples/company/OrderDetail.java | 123 ++ .../eclipse/emf/cdo/examples/company/Product.java | 141 ++ .../emf/cdo/examples/company/PurchaseOrder.java | 94 ++ .../emf/cdo/examples/company/SalesOrder.java | 91 ++ .../eclipse/emf/cdo/examples/company/Supplier.java | 84 ++ .../org/eclipse/emf/cdo/examples/company/VAT.java | 254 ++++ .../emf/cdo/examples/company/impl/AddressImpl.java | 134 ++ .../cdo/examples/company/impl/CategoryImpl.java | 118 ++ .../examples/company/impl/CompanyFactoryImpl.java | 322 +++++ .../emf/cdo/examples/company/impl/CompanyImpl.java | 124 ++ .../examples/company/impl/CompanyPackageImpl.java | 837 ++++++++++++ .../cdo/examples/company/impl/CustomerImpl.java | 72 + .../examples/company/impl/OrderAddressImpl.java | 228 +++ .../cdo/examples/company/impl/OrderDetailImpl.java | 136 ++ .../emf/cdo/examples/company/impl/OrderImpl.java | 85 ++ .../emf/cdo/examples/company/impl/ProductImpl.java | 149 ++ .../examples/company/impl/PurchaseOrderImpl.java | 103 ++ .../cdo/examples/company/impl/SalesOrderImpl.java | 101 ++ .../cdo/examples/company/impl/SupplierImpl.java | 93 ++ .../company/util/CompanyAdapterFactory.java | 349 +++++ .../cdo/examples/company/util/CompanySwitch.java | 440 ++++++ .../company/validation/AddressValidator.java | 30 + .../company/validation/CategoryValidator.java | 35 + .../company/validation/CompanyValidator.java | 42 + .../company/validation/CustomerValidator.java | 32 + .../company/validation/OrderAddressValidator.java | 24 + .../company/validation/OrderDetailValidator.java | 33 + .../company/validation/OrderValidator.java | 30 + .../company/validation/ProductValidator.java | 35 + .../company/validation/PurchaseOrderValidator.java | 32 + .../company/validation/SalesOrderValidator.java | 30 + .../company/validation/SupplierValidator.java | 34 + 40 files changed, 6523 insertions(+) create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Address.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Category.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Company.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/CompanyFactory.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/CompanyPackage.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Customer.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Order.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/OrderAddress.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/OrderDetail.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Product.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/PurchaseOrder.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/SalesOrder.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Supplier.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/VAT.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/AddressImpl.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CategoryImpl.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CompanyFactoryImpl.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CompanyImpl.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CompanyPackageImpl.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CustomerImpl.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/OrderAddressImpl.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/OrderDetailImpl.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/OrderImpl.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/ProductImpl.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/PurchaseOrderImpl.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/SalesOrderImpl.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/SupplierImpl.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/util/CompanyAdapterFactory.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/util/CompanySwitch.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/AddressValidator.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/CategoryValidator.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/CompanyValidator.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/CustomerValidator.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/OrderAddressValidator.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/OrderDetailValidator.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/OrderValidator.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/ProductValidator.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/PurchaseOrderValidator.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/SalesOrderValidator.java create mode 100644 plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/SupplierValidator.java (limited to 'plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo') diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Address.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Address.java new file mode 100644 index 0000000000..38987a89bc --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Address.java @@ -0,0 +1,117 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +import org.eclipse.emf.ecore.EObject; + +/** + * A representation of the model object 'Address'. + *

+ * The following features are supported: + *

+ *

+ * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getAddress() + * @model + * @generated + */ +public interface Address extends EObject +{ + /** + * + * + * @generated + */ + String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * Returns the value of the 'Name' attribute. + *

+ * If the meaning of the 'Name' attribute isn't clear, there really should be more of a description here... + *

+ * + * + * @return the value of the 'Name' attribute. + * @see #setName(String) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getAddress_Name() + * @model + * @generated + */ + String getName(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.Address#getName Name}' attribute. + * + * @param value + * the new value of the 'Name' attribute. + * @see #getName() + * @generated + */ + void setName(String value); + + /** + * Returns the value of the 'Street' attribute. + *

+ * If the meaning of the 'Street' attribute isn't clear, there really should be more of a description here... + *

+ * + * + * @return the value of the 'Street' attribute. + * @see #setStreet(String) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getAddress_Street() + * @model + * @generated + */ + String getStreet(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.Address#getStreet Street}' attribute. + * + * @param value + * the new value of the 'Street' attribute. + * @see #getStreet() + * @generated + */ + void setStreet(String value); + + /** + * Returns the value of the 'City' attribute. + *

+ * If the meaning of the 'City' attribute isn't clear, there really should be more of a description here... + *

+ * + * + * @return the value of the 'City' attribute. + * @see #setCity(String) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getAddress_City() + * @model + * @generated + */ + String getCity(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.Address#getCity City}' attribute. + * + * @param value + * the new value of the 'City' attribute. + * @see #getCity() + * @generated + */ + void setCity(String value); + +} // Address diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Category.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Category.java new file mode 100644 index 0000000000..6cfab4b58e --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Category.java @@ -0,0 +1,98 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EObject; + +/** + * A representation of the model object 'Category'. + *

+ * The following features are supported: + *

+ *

+ * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCategory() + * @model + * @generated + */ +public interface Category extends EObject +{ + /** + * + * + * @generated + */ + String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * Returns the value of the 'Name' attribute. + *

+ * If the meaning of the 'Name' attribute isn't clear, there really should be more of a description here... + *

+ * + * + * @return the value of the 'Name' attribute. + * @see #setName(String) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCategory_Name() + * @model + * @generated + */ + String getName(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.Category#getName Name}' attribute. + * + * @param value + * the new value of the 'Name' attribute. + * @see #getName() + * @generated + */ + void setName(String value); + + /** + * Returns the value of the 'Categories' containment reference list. The list contents are of type + * {@link org.eclipse.emf.cdo.examples.company.Category}. + *

+ * If the meaning of the 'Categories' containment reference list isn't clear, there really should be more of + * a description here... + *

+ * + * + * @return the value of the 'Categories' containment reference list. + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCategory_Categories() + * @model containment="true" + * @generated + */ + EList getCategories(); + + /** + * Returns the value of the 'Products' containment reference list. The list contents are of type + * {@link org.eclipse.emf.cdo.examples.company.Product}. + *

+ * If the meaning of the 'Products' containment reference list isn't clear, there really should be more of a + * description here... + *

+ * + * + * @return the value of the 'Products' containment reference list. + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCategory_Products() + * @model containment="true" + * @generated + */ + EList getProducts(); + +} // Category diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Company.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Company.java new file mode 100644 index 0000000000..09b75145c7 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Company.java @@ -0,0 +1,121 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +import org.eclipse.emf.common.util.EList; + +/** + * A representation of the model object 'Company'. + *

+ * The following features are supported: + *

+ *

+ * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCompany() + * @model + * @generated + */ +public interface Company extends Address +{ + /** + * + * + * @generated + */ + String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * Returns the value of the 'Categories' containment reference list. The list contents are of type + * {@link org.eclipse.emf.cdo.examples.company.Category}. + *

+ * If the meaning of the 'Categories' containment reference list isn't clear, there really should be more of + * a description here... + *

+ * + * + * @return the value of the 'Categories' containment reference list. + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCompany_Categories() + * @model containment="true" + * @generated + */ + EList getCategories(); + + /** + * Returns the value of the 'Suppliers' containment reference list. The list contents are of type + * {@link org.eclipse.emf.cdo.examples.company.Supplier}. + *

+ * If the meaning of the 'Suppliers' containment reference list isn't clear, there really should be more of a + * description here... + *

+ * + * + * @return the value of the 'Suppliers' containment reference list. + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCompany_Suppliers() + * @model containment="true" + * @generated + */ + EList getSuppliers(); + + /** + * Returns the value of the 'Purchase Orders' containment reference list. The list contents are of + * type {@link org.eclipse.emf.cdo.examples.company.PurchaseOrder}. + *

+ * If the meaning of the 'Purchase Orders' containment reference list isn't clear, there really should be + * more of a description here... + *

+ * + * + * @return the value of the 'Purchase Orders' containment reference list. + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCompany_PurchaseOrders() + * @model containment="true" + * @generated + */ + EList getPurchaseOrders(); + + /** + * Returns the value of the 'Customers' containment reference list. The list contents are of type + * {@link org.eclipse.emf.cdo.examples.company.Customer}. + *

+ * If the meaning of the 'Customers' containment reference list isn't clear, there really should be more of a + * description here... + *

+ * + * + * @return the value of the 'Customers' containment reference list. + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCompany_Customers() + * @model containment="true" + * @generated + */ + EList getCustomers(); + + /** + * Returns the value of the 'Sales Orders' containment reference list. The list contents are of type + * {@link org.eclipse.emf.cdo.examples.company.SalesOrder}. + *

+ * If the meaning of the 'Sales Orders' containment reference list isn't clear, there really should be more + * of a description here... + *

+ * + * + * @return the value of the 'Sales Orders' containment reference list. + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCompany_SalesOrders() + * @model containment="true" + * @generated + */ + EList getSalesOrders(); + +} // Company diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/CompanyFactory.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/CompanyFactory.java new file mode 100644 index 0000000000..9982f2aba6 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/CompanyFactory.java @@ -0,0 +1,134 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +import org.eclipse.emf.ecore.EFactory; + +/** + * The Factory for the model. It provides a create method for each non-abstract class of + * the model. + * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage + * @generated + */ +public interface CompanyFactory extends EFactory +{ + /** + * + * + * @generated + */ + String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * The singleton instance of the factory. + * + * @generated + */ + CompanyFactory eINSTANCE = org.eclipse.emf.cdo.examples.company.impl.CompanyFactoryImpl.init(); + + /** + * Returns a new object of class 'Address'. + * + * @return a new object of class 'Address'. + * @generated + */ + Address createAddress(); + + /** + * Returns a new object of class 'Supplier'. + * + * @return a new object of class 'Supplier'. + * @generated + */ + Supplier createSupplier(); + + /** + * Returns a new object of class 'Purchase Order'. + * + * @return a new object of class 'Purchase Order'. + * @generated + */ + PurchaseOrder createPurchaseOrder(); + + /** + * Returns a new object of class 'Order Detail'. + * + * @return a new object of class 'Order Detail'. + * @generated + */ + OrderDetail createOrderDetail(); + + /** + * Returns a new object of class 'Order Address'. + * + * @return a new object of class 'Order Address'. + * @generated + */ + OrderAddress createOrderAddress(); + + /** + * Returns a new object of class 'Category'. + * + * @return a new object of class 'Category'. + * @generated + */ + Category createCategory(); + + /** + * Returns a new object of class 'Product'. + * + * @return a new object of class 'Product'. + * @generated + */ + Product createProduct(); + + /** + * Returns a new object of class 'Company'. + * + * @return a new object of class 'Company'. + * @generated + */ + Company createCompany(); + + /** + * Returns a new object of class 'Customer'. + * + * @return a new object of class 'Customer'. + * @generated + */ + Customer createCustomer(); + + /** + * Returns a new object of class 'Order'. + * + * @return a new object of class 'Order'. + * @generated + */ + Order createOrder(); + + /** + * Returns a new object of class 'Sales Order'. + * + * @return a new object of class 'Sales Order'. + * @generated + */ + SalesOrder createSalesOrder(); + + /** + * Returns the package supported by this factory. + * + * @return the package supported by this factory. + * @generated + */ + CompanyPackage getCompanyPackage(); + +} // CompanyFactory diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/CompanyPackage.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/CompanyPackage.java new file mode 100644 index 0000000000..e81aa55dd4 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/CompanyPackage.java @@ -0,0 +1,1445 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +import org.eclipse.emf.ecore.EAttribute; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EEnum; +import org.eclipse.emf.ecore.EPackage; +import org.eclipse.emf.ecore.EReference; + +/** + * The Package for the model. It contains accessors for the meta objects to represent + *
    + *
  • each class,
  • + *
  • each feature of each class,
  • + *
  • each enum,
  • + *
  • and each data type
  • + *
+ * + * + * @see org.eclipse.emf.cdo.examples.company.CompanyFactory + * @model kind="package" + * @generated + */ +public interface CompanyPackage extends EPackage +{ + /** + * + * + * @generated + */ + String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * The package name. + * + * @generated + */ + String eNAME = "company"; + + /** + * The package namespace URI. + * + * @generated + */ + String eNS_URI = "http://www.eclipse.org/emf/CDO/examples/company/1.0.0"; + + /** + * The package namespace name. + * + * @generated + */ + String eNS_PREFIX = "company"; + + /** + * The singleton instance of the package. + * + * @generated + */ + CompanyPackage eINSTANCE = org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl.init(); + + /** + * The meta object id for the '{@link org.eclipse.emf.cdo.examples.company.impl.AddressImpl Address}' class. + * + * + * @see org.eclipse.emf.cdo.examples.company.impl.AddressImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getAddress() + * @generated + */ + int ADDRESS = 0; + + /** + * The feature id for the 'Name' attribute. + * + * @generated + * @ordered + */ + int ADDRESS__NAME = 0; + + /** + * The feature id for the 'Street' attribute. + * + * @generated + * @ordered + */ + int ADDRESS__STREET = 1; + + /** + * The feature id for the 'City' attribute. + * + * @generated + * @ordered + */ + int ADDRESS__CITY = 2; + + /** + * The number of structural features of the 'Address' class. + * + * @generated + * @ordered + */ + int ADDRESS_FEATURE_COUNT = 3; + + /** + * The meta object id for the '{@link org.eclipse.emf.cdo.examples.company.impl.SupplierImpl Supplier}' + * class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.SupplierImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getSupplier() + * @generated + */ + int SUPPLIER = 2; + + /** + * The meta object id for the '{@link org.eclipse.emf.cdo.examples.company.impl.PurchaseOrderImpl + * Purchase Order} ' class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.PurchaseOrderImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getPurchaseOrder() + * @generated + */ + int PURCHASE_ORDER = 6; + + /** + * The meta object id for the '{@link org.eclipse.emf.cdo.examples.company.impl.OrderDetailImpl Order Detail} + * ' class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.OrderDetailImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getOrderDetail() + * @generated + */ + int ORDER_DETAIL = 5; + + /** + * Returns the meta object for class '{@link org.eclipse.emf.cdo.examples.company.Address Address}'. + * + * @return the meta object for class 'Address'. + * @see org.eclipse.emf.cdo.examples.company.Address + * @generated + */ + EClass getAddress(); + + /** + * Returns the meta object for the attribute '{@link org.eclipse.emf.cdo.examples.company.Address#getName + * Name}'. + * + * @return the meta object for the attribute 'Name'. + * @see org.eclipse.emf.cdo.examples.company.Address#getName() + * @see #getAddress() + * @generated + */ + EAttribute getAddress_Name(); + + /** + * Returns the meta object for the attribute '{@link org.eclipse.emf.cdo.examples.company.Address#getStreet + * Street}'. + * + * @return the meta object for the attribute 'Street'. + * @see org.eclipse.emf.cdo.examples.company.Address#getStreet() + * @see #getAddress() + * @generated + */ + EAttribute getAddress_Street(); + + /** + * Returns the meta object for the attribute '{@link org.eclipse.emf.cdo.examples.company.Address#getCity + * City}'. + * + * @return the meta object for the attribute 'City'. + * @see org.eclipse.emf.cdo.examples.company.Address#getCity() + * @see #getAddress() + * @generated + */ + EAttribute getAddress_City(); + + /** + * The meta object id for the '{@link org.eclipse.emf.cdo.examples.company.impl.CategoryImpl Category}' + * class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.CategoryImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getCategory() + * @generated + */ + int CATEGORY = 8; + + /** + * The meta object id for the '{@link org.eclipse.emf.cdo.examples.company.impl.CompanyImpl Company}' class. + * + * + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getCompany() + * @generated + */ + int COMPANY = 1; + + /** + * The feature id for the 'Name' attribute. + * + * @generated + * @ordered + */ + int COMPANY__NAME = ADDRESS__NAME; + + /** + * The feature id for the 'Street' attribute. + * + * @generated + * @ordered + */ + int COMPANY__STREET = ADDRESS__STREET; + + /** + * The feature id for the 'City' attribute. + * + * @generated + * @ordered + */ + int COMPANY__CITY = ADDRESS__CITY; + + /** + * The feature id for the 'Categories' containment reference list. + * + * @generated + * @ordered + */ + int COMPANY__CATEGORIES = ADDRESS_FEATURE_COUNT + 0; + + /** + * The feature id for the 'Suppliers' containment reference list. + * + * @generated + * @ordered + */ + int COMPANY__SUPPLIERS = ADDRESS_FEATURE_COUNT + 1; + + /** + * The feature id for the 'Customers' containment reference list. + * + * @generated + * @ordered + */ + int COMPANY__CUSTOMERS = ADDRESS_FEATURE_COUNT + 2; + + /** + * The feature id for the 'Purchase Orders' containment reference list. + * + * @generated + * @ordered + */ + int COMPANY__PURCHASE_ORDERS = ADDRESS_FEATURE_COUNT + 3; + + /** + * The feature id for the 'Sales Orders' containment reference list. + * + * @generated + * @ordered + */ + int COMPANY__SALES_ORDERS = ADDRESS_FEATURE_COUNT + 4; + + /** + * The number of structural features of the 'Company' class. + * + * @generated + * @ordered + */ + int COMPANY_FEATURE_COUNT = ADDRESS_FEATURE_COUNT + 5; + + /** + * The feature id for the 'Name' attribute. + * + * @generated + * @ordered + */ + int SUPPLIER__NAME = ADDRESS__NAME; + + /** + * The feature id for the 'Street' attribute. + * + * @generated + * @ordered + */ + int SUPPLIER__STREET = ADDRESS__STREET; + + /** + * The feature id for the 'City' attribute. + * + * @generated + * @ordered + */ + int SUPPLIER__CITY = ADDRESS__CITY; + + /** + * The feature id for the 'Purchase Orders' reference list. + * + * @generated + * @ordered + */ + int SUPPLIER__PURCHASE_ORDERS = ADDRESS_FEATURE_COUNT + 0; + + /** + * The feature id for the 'Preferred' attribute. + * + * @generated + * @ordered + */ + int SUPPLIER__PREFERRED = ADDRESS_FEATURE_COUNT + 1; + + /** + * The number of structural features of the 'Supplier' class. + * + * @generated + * @ordered + */ + int SUPPLIER_FEATURE_COUNT = ADDRESS_FEATURE_COUNT + 2; + + /** + * The meta object id for the '{@link org.eclipse.emf.cdo.examples.company.impl.CustomerImpl Customer}' + * class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.CustomerImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getCustomer() + * @generated + */ + int CUSTOMER = 3; + + /** + * The feature id for the 'Name' attribute. + * + * @generated + * @ordered + */ + int CUSTOMER__NAME = ADDRESS__NAME; + + /** + * The feature id for the 'Street' attribute. + * + * @generated + * @ordered + */ + int CUSTOMER__STREET = ADDRESS__STREET; + + /** + * The feature id for the 'City' attribute. + * + * @generated + * @ordered + */ + int CUSTOMER__CITY = ADDRESS__CITY; + + /** + * The feature id for the 'Sales Orders' reference list. + * + * @generated + * @ordered + */ + int CUSTOMER__SALES_ORDERS = ADDRESS_FEATURE_COUNT + 0; + + /** + * The number of structural features of the 'Customer' class. + * + * @generated + * @ordered + */ + int CUSTOMER_FEATURE_COUNT = ADDRESS_FEATURE_COUNT + 1; + + /** + * The meta object id for the '{@link org.eclipse.emf.cdo.examples.company.impl.OrderImpl Order}' class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.OrderImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getOrder() + * @generated + */ + int ORDER = 4; + + /** + * The feature id for the 'Order Details' containment reference list. + * + * @generated + * @ordered + */ + int ORDER__ORDER_DETAILS = 0; + + /** + * The number of structural features of the 'Order' class. + * + * @generated + * @ordered + */ + int ORDER_FEATURE_COUNT = 1; + + /** + * The feature id for the 'Order' container reference. + * + * @generated + * @ordered + */ + int ORDER_DETAIL__ORDER = 0; + + /** + * The feature id for the 'Product' reference. + * + * @generated + * @ordered + */ + int ORDER_DETAIL__PRODUCT = 1; + + /** + * The feature id for the 'Price' attribute. + * + * @generated + * @ordered + */ + int ORDER_DETAIL__PRICE = 2; + + /** + * The number of structural features of the 'Order Detail' class. + * + * @generated + * @ordered + */ + int ORDER_DETAIL_FEATURE_COUNT = 3; + + /** + * The feature id for the 'Order Details' containment reference list. + * + * @generated + * @ordered + */ + int PURCHASE_ORDER__ORDER_DETAILS = ORDER__ORDER_DETAILS; + + /** + * The feature id for the 'Date' attribute. + * + * @generated + * @ordered + */ + int PURCHASE_ORDER__DATE = ORDER_FEATURE_COUNT + 0; + + /** + * The feature id for the 'Supplier' reference. + * + * @generated + * @ordered + */ + int PURCHASE_ORDER__SUPPLIER = ORDER_FEATURE_COUNT + 1; + + /** + * The number of structural features of the 'Purchase Order' class. + * + * @generated + * @ordered + */ + int PURCHASE_ORDER_FEATURE_COUNT = ORDER_FEATURE_COUNT + 2; + + /** + * The meta object id for the '{@link org.eclipse.emf.cdo.examples.company.impl.SalesOrderImpl Sales Order}' + * class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.SalesOrderImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getSalesOrder() + * @generated + */ + int SALES_ORDER = 7; + + /** + * The feature id for the 'Order Details' containment reference list. + * + * @generated + * @ordered + */ + int SALES_ORDER__ORDER_DETAILS = ORDER__ORDER_DETAILS; + + /** + * The feature id for the 'Id' attribute. + * + * @generated + * @ordered + */ + int SALES_ORDER__ID = ORDER_FEATURE_COUNT + 0; + + /** + * The feature id for the 'Customer' reference. + * + * @generated + * @ordered + */ + int SALES_ORDER__CUSTOMER = ORDER_FEATURE_COUNT + 1; + + /** + * The number of structural features of the 'Sales Order' class. + * + * @generated + * @ordered + */ + int SALES_ORDER_FEATURE_COUNT = ORDER_FEATURE_COUNT + 2; + + /** + * The feature id for the 'Name' attribute. + * + * @generated + * @ordered + */ + int CATEGORY__NAME = 0; + + /** + * The feature id for the 'Categories' containment reference list. + * + * @generated + * @ordered + */ + int CATEGORY__CATEGORIES = 1; + + /** + * The feature id for the 'Products' containment reference list. + * + * @generated + * @ordered + */ + int CATEGORY__PRODUCTS = 2; + + /** + * The number of structural features of the 'Category' class. + * + * @generated + * @ordered + */ + int CATEGORY_FEATURE_COUNT = 3; + + /** + * The meta object id for the '{@link org.eclipse.emf.cdo.examples.company.impl.ProductImpl Product}' class. + * + * + * @see org.eclipse.emf.cdo.examples.company.impl.ProductImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getCompany() + * @generated + */ + int PRODUCT1 = 9; + + /** + * The feature id for the 'Name' attribute. + * + * @generated + * @ordered + */ + int PRODUCT1__NAME = 0; + + /** + * The feature id for the 'Order Details' reference list. + * + * @generated + * @ordered + */ + int PRODUCT1__ORDER_DETAILS = 1; + + /** + * The feature id for the 'Vat' attribute. + * + * @generated + * @ordered + */ + int PRODUCT1__VAT = 2; + + /** + * The feature id for the 'Description' attribute. + * + * @generated + * @ordered + */ + int PRODUCT1__DESCRIPTION = 3; + + /** + * The number of structural features of the 'Product' class. + * + * @generated + * @ordered + */ + int PRODUCT1_FEATURE_COUNT = 4; + + /** + * The meta object id for the '{@link org.eclipse.emf.cdo.examples.company.impl.OrderAddressImpl + * Order Address}' class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.OrderAddressImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getOrderAddress() + * @generated + */ + int ORDER_ADDRESS = 10; + + /** + * The feature id for the 'Name' attribute. + * + * @generated + * @ordered + */ + int ORDER_ADDRESS__NAME = ADDRESS__NAME; + + /** + * The feature id for the 'Street' attribute. + * + * @generated + * @ordered + */ + int ORDER_ADDRESS__STREET = ADDRESS__STREET; + + /** + * The feature id for the 'City' attribute. + * + * @generated + * @ordered + */ + int ORDER_ADDRESS__CITY = ADDRESS__CITY; + + /** + * The feature id for the 'Order Details' containment reference list. + * + * @generated + * @ordered + */ + int ORDER_ADDRESS__ORDER_DETAILS = ADDRESS_FEATURE_COUNT + 0; + + /** + * The feature id for the 'Order' container reference. + * + * @generated + * @ordered + */ + int ORDER_ADDRESS__ORDER = ADDRESS_FEATURE_COUNT + 1; + + /** + * The feature id for the 'Product' reference. + * + * @generated + * @ordered + */ + int ORDER_ADDRESS__PRODUCT = ADDRESS_FEATURE_COUNT + 2; + + /** + * The feature id for the 'Price' attribute. + * + * @generated + * @ordered + */ + int ORDER_ADDRESS__PRICE = ADDRESS_FEATURE_COUNT + 3; + + /** + * The feature id for the 'Test Attribute' attribute. + * + * @generated + * @ordered + */ + int ORDER_ADDRESS__TEST_ATTRIBUTE = ADDRESS_FEATURE_COUNT + 4; + + /** + * The number of structural features of the 'Order Address' class. + * + * @generated + * @ordered + */ + int ORDER_ADDRESS_FEATURE_COUNT = ADDRESS_FEATURE_COUNT + 5; + + /** + * The meta object id for the '{@link org.eclipse.emf.cdo.examples.company.VAT VAT}' enum. + * + * @see org.eclipse.emf.cdo.examples.company.VAT + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getVAT() + * @generated + */ + int VAT = 11; + + /** + * Returns the meta object for class '{@link org.eclipse.emf.cdo.examples.company.Supplier Supplier}'. + * + * @return the meta object for class 'Supplier'. + * @see org.eclipse.emf.cdo.examples.company.Supplier + * @generated + */ + EClass getSupplier(); + + /** + * Returns the meta object for the reference list ' + * {@link org.eclipse.emf.cdo.examples.company.Supplier#getPurchaseOrders Purchase Orders}'. + * + * @return the meta object for the reference list 'Purchase Orders'. + * @see org.eclipse.emf.cdo.examples.company.Supplier#getPurchaseOrders() + * @see #getSupplier() + * @generated + */ + EReference getSupplier_PurchaseOrders(); + + /** + * Returns the meta object for the attribute '{@link org.eclipse.emf.cdo.examples.company.Supplier#isPreferred + * Preferred}'. + * + * @return the meta object for the attribute 'Preferred'. + * @see org.eclipse.emf.cdo.examples.company.Supplier#isPreferred() + * @see #getSupplier() + * @generated + */ + EAttribute getSupplier_Preferred(); + + /** + * Returns the meta object for class '{@link org.eclipse.emf.cdo.examples.company.PurchaseOrder + * Purchase Order}'. + * + * @return the meta object for class 'Purchase Order'. + * @see org.eclipse.emf.cdo.examples.company.PurchaseOrder + * @generated + */ + EClass getPurchaseOrder(); + + /** + * Returns the meta object for the attribute '{@link org.eclipse.emf.cdo.examples.company.PurchaseOrder#getDate + * Date}'. + * + * @return the meta object for the attribute 'Date'. + * @see org.eclipse.emf.cdo.examples.company.PurchaseOrder#getDate() + * @see #getPurchaseOrder() + * @generated + */ + EAttribute getPurchaseOrder_Date(); + + /** + * Returns the meta object for the reference '{@link org.eclipse.emf.cdo.examples.company.PurchaseOrder#getSupplier + * Supplier}'. + * + * @return the meta object for the reference 'Supplier'. + * @see org.eclipse.emf.cdo.examples.company.PurchaseOrder#getSupplier() + * @see #getPurchaseOrder() + * @generated + */ + EReference getPurchaseOrder_Supplier(); + + /** + * Returns the meta object for class '{@link org.eclipse.emf.cdo.examples.company.OrderDetail Order Detail}'. + * + * + * @return the meta object for class 'Order Detail'. + * @see org.eclipse.emf.cdo.examples.company.OrderDetail + * @generated + */ + EClass getOrderDetail(); + + /** + * Returns the meta object for the container reference ' + * {@link org.eclipse.emf.cdo.examples.company.OrderDetail#getOrder Order}'. + * + * @return the meta object for the container reference 'Order'. + * @see org.eclipse.emf.cdo.examples.company.OrderDetail#getOrder() + * @see #getOrderDetail() + * @generated + */ + EReference getOrderDetail_Order(); + + /** + * Returns the meta object for the reference '{@link org.eclipse.emf.cdo.examples.company.OrderDetail#getProduct + * Product}'. + * + * @return the meta object for the reference 'Product'. + * @see org.eclipse.emf.cdo.examples.company.OrderDetail#getProduct() + * @see #getOrderDetail() + * @generated + */ + EReference getOrderDetail_Product(); + + /** + * Returns the meta object for the attribute '{@link org.eclipse.emf.cdo.examples.company.OrderDetail#getPrice + * Price}'. + * + * @return the meta object for the attribute 'Price'. + * @see org.eclipse.emf.cdo.examples.company.OrderDetail#getPrice() + * @see #getOrderDetail() + * @generated + */ + EAttribute getOrderDetail_Price(); + + /** + * Returns the meta object for class '{@link org.eclipse.emf.cdo.examples.company.OrderAddress Order Address} + * '. + * + * @return the meta object for class 'Order Address'. + * @see org.eclipse.emf.cdo.examples.company.OrderAddress + * @generated + */ + EClass getOrderAddress(); + + /** + * Returns the meta object for the attribute ' + * {@link org.eclipse.emf.cdo.examples.company.OrderAddress#isTestAttribute Test Attribute}'. + * + * @return the meta object for the attribute 'Test Attribute'. + * @see org.eclipse.emf.cdo.examples.company.OrderAddress#isTestAttribute() + * @see #getOrderAddress() + * @generated + */ + EAttribute getOrderAddress_TestAttribute(); + + /** + * Returns the meta object for enum '{@link org.eclipse.emf.cdo.examples.company.VAT VAT}'. + * + * @return the meta object for enum 'VAT'. + * @see org.eclipse.emf.cdo.examples.company.VAT + * @generated + */ + EEnum getVAT(); + + /** + * Returns the meta object for class '{@link org.eclipse.emf.cdo.examples.company.Category Category}'. + * + * @return the meta object for class 'Category'. + * @see org.eclipse.emf.cdo.examples.company.Category + * @generated + */ + EClass getCategory(); + + /** + * Returns the meta object for the attribute '{@link org.eclipse.emf.cdo.examples.company.Category#getName + * Name} '. + * + * @return the meta object for the attribute 'Name'. + * @see org.eclipse.emf.cdo.examples.company.Category#getName() + * @see #getCategory() + * @generated + */ + EAttribute getCategory_Name(); + + /** + * Returns the meta object for the containment reference list ' + * {@link org.eclipse.emf.cdo.examples.company.Category#getCategories Categories}'. + * + * + * @return the meta object for the containment reference list 'Categories'. + * @see org.eclipse.emf.cdo.examples.company.Category#getCategories() + * @see #getCategory() + * @generated + */ + EReference getCategory_Categories(); + + /** + * Returns the meta object for the containment reference list ' + * {@link org.eclipse.emf.cdo.examples.company.Category#getProducts Products}'. + * + * @return the meta object for the containment reference list 'Products'. + * @see org.eclipse.emf.cdo.examples.company.Category#getProducts() + * @see #getCategory() + * @generated + */ + EReference getCategory_Products(); + + /** + * Returns the meta object for class '{@link org.eclipse.emf.cdo.examples.company.Product Product}'. + * + * @return the meta object for class 'Product'. + * @see org.eclipse.emf.cdo.examples.company.Product + * @generated + */ + EClass getProduct(); + + /** + * Returns the meta object for the attribute '{@link org.eclipse.emf.cdo.examples.company.Product#getName + * Name} '. + * + * @return the meta object for the attribute 'Name'. + * @see org.eclipse.emf.cdo.examples.company.Product#getName() + * @see #getCompany() + * @generated + */ + EAttribute getCompany_Name(); + + /** + * Returns the meta object for the reference list ' + * {@link org.eclipse.emf.cdo.examples.company.Product#getOrderDetails Order Details}'. + * + * @return the meta object for the reference list 'Order Details'. + * @see org.eclipse.emf.cdo.examples.company.Product#getOrderDetails() + * @see #getCompany() + * @generated + */ + EReference getCompany_OrderDetails(); + + /** + * Returns the meta object for the attribute '{@link org.eclipse.emf.cdo.examples.company.Product#getVat Vat} + * '. + * + * @return the meta object for the attribute 'Vat'. + * @see org.eclipse.emf.cdo.examples.company.Product#getVat() + * @see #getCompany() + * @generated + */ + EAttribute getCompany_Vat(); + + /** + * Returns the meta object for the attribute '{@link org.eclipse.emf.cdo.examples.company.Product#getDescription + * Description}'. + * + * @return the meta object for the attribute 'Description'. + * @see org.eclipse.emf.cdo.examples.company.Product#getDescription() + * @see #getCompany() + * @generated + */ + EAttribute getCompany_Description(); + + /** + * Returns the meta object for class '{@link org.eclipse.emf.cdo.examples.company.Company Company}'. + * + * @return the meta object for class 'Company'. + * @see org.eclipse.emf.cdo.examples.company.Company + * @generated + */ + EClass getCompany(); + + /** + * Returns the meta object for the containment reference list ' + * {@link org.eclipse.emf.cdo.examples.company.Company#getCategories Categories}'. + * + * + * @return the meta object for the containment reference list 'Categories'. + * @see org.eclipse.emf.cdo.examples.company.Company#getCategories() + * @see #getCompany() + * @generated + */ + EReference getCompany_Categories(); + + /** + * Returns the meta object for the containment reference list ' + * {@link org.eclipse.emf.cdo.examples.company.Company#getSuppliers Suppliers}'. + * + * @return the meta object for the containment reference list 'Suppliers'. + * @see org.eclipse.emf.cdo.examples.company.Company#getSuppliers() + * @see #getCompany() + * @generated + */ + EReference getCompany_Suppliers(); + + /** + * Returns the meta object for the containment reference list ' + * {@link org.eclipse.emf.cdo.examples.company.Company#getPurchaseOrders Purchase Orders}'. + * + * @return the meta object for the containment reference list 'Purchase Orders'. + * @see org.eclipse.emf.cdo.examples.company.Company#getPurchaseOrders() + * @see #getCompany() + * @generated + */ + EReference getCompany_PurchaseOrders(); + + /** + * Returns the meta object for the containment reference list ' + * {@link org.eclipse.emf.cdo.examples.company.Company#getCustomers Customers}'. + * + * @return the meta object for the containment reference list 'Customers'. + * @see org.eclipse.emf.cdo.examples.company.Company#getCustomers() + * @see #getCompany() + * @generated + */ + EReference getCompany_Customers(); + + /** + * Returns the meta object for the containment reference list ' + * {@link org.eclipse.emf.cdo.examples.company.Company#getSalesOrders Sales Orders}'. + * + * + * @return the meta object for the containment reference list 'Sales Orders'. + * @see org.eclipse.emf.cdo.examples.company.Company#getSalesOrders() + * @see #getCompany() + * @generated + */ + EReference getCompany_SalesOrders(); + + /** + * Returns the meta object for class '{@link org.eclipse.emf.cdo.examples.company.Customer Customer}'. + * + * @return the meta object for class 'Customer'. + * @see org.eclipse.emf.cdo.examples.company.Customer + * @generated + */ + EClass getCustomer(); + + /** + * Returns the meta object for the reference list ' + * {@link org.eclipse.emf.cdo.examples.company.Customer#getSalesOrders Sales Orders}'. + * + * @return the meta object for the reference list 'Sales Orders'. + * @see org.eclipse.emf.cdo.examples.company.Customer#getSalesOrders() + * @see #getCustomer() + * @generated + */ + EReference getCustomer_SalesOrders(); + + /** + * Returns the meta object for class '{@link org.eclipse.emf.cdo.examples.company.Order Order}'. + * + * @return the meta object for class 'Order'. + * @see org.eclipse.emf.cdo.examples.company.Order + * @generated + */ + EClass getOrder(); + + /** + * Returns the meta object for the containment reference list ' + * {@link org.eclipse.emf.cdo.examples.company.Order#getOrderDetails Order Details}'. + * + * + * @return the meta object for the containment reference list 'Order Details'. + * @see org.eclipse.emf.cdo.examples.company.Order#getOrderDetails() + * @see #getOrder() + * @generated + */ + EReference getOrder_OrderDetails(); + + /** + * Returns the meta object for class '{@link org.eclipse.emf.cdo.examples.company.SalesOrder Sales Order}'. + * + * + * @return the meta object for class 'Sales Order'. + * @see org.eclipse.emf.cdo.examples.company.SalesOrder + * @generated + */ + EClass getSalesOrder(); + + /** + * Returns the meta object for the attribute '{@link org.eclipse.emf.cdo.examples.company.SalesOrder#getId + * Id}'. + * + * @return the meta object for the attribute 'Id'. + * @see org.eclipse.emf.cdo.examples.company.SalesOrder#getId() + * @see #getSalesOrder() + * @generated + */ + EAttribute getSalesOrder_Id(); + + /** + * Returns the meta object for the reference '{@link org.eclipse.emf.cdo.examples.company.SalesOrder#getCustomer + * Customer}'. + * + * @return the meta object for the reference 'Customer'. + * @see org.eclipse.emf.cdo.examples.company.SalesOrder#getCustomer() + * @see #getSalesOrder() + * @generated + */ + EReference getSalesOrder_Customer(); + + /** + * Returns the factory that creates the instances of the model. + * + * @return the factory that creates the instances of the model. + * @generated + */ + CompanyFactory getCompanyFactory(); + + /** + * Defines literals for the meta objects that represent + *
    + *
  • each class,
  • + *
  • each feature of each class,
  • + *
  • each enum,
  • + *
  • and each data type
  • + *
+ * + * + * @generated + */ + interface Literals + { + /** + * The meta object literal for the '{@link org.eclipse.emf.cdo.examples.company.impl.AddressImpl Address}' + * class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.AddressImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getAddress() + * @generated + */ + EClass ADDRESS = eINSTANCE.getAddress(); + + /** + * The meta object literal for the 'Name' attribute feature. + * + * @generated + */ + EAttribute ADDRESS__NAME = eINSTANCE.getAddress_Name(); + + /** + * The meta object literal for the 'Street' attribute feature. + * + * @generated + */ + EAttribute ADDRESS__STREET = eINSTANCE.getAddress_Street(); + + /** + * The meta object literal for the 'City' attribute feature. + * + * @generated + */ + EAttribute ADDRESS__CITY = eINSTANCE.getAddress_City(); + + /** + * The meta object literal for the '{@link org.eclipse.emf.cdo.examples.company.impl.SupplierImpl Supplier} + * ' class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.SupplierImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getSupplier() + * @generated + */ + EClass SUPPLIER = eINSTANCE.getSupplier(); + + /** + * The meta object literal for the 'Purchase Orders' reference list feature. + * + * + * @generated + */ + EReference SUPPLIER__PURCHASE_ORDERS = eINSTANCE.getSupplier_PurchaseOrders(); + + /** + * The meta object literal for the 'Preferred' attribute feature. + * + * @generated + */ + EAttribute SUPPLIER__PREFERRED = eINSTANCE.getSupplier_Preferred(); + + /** + * The meta object literal for the '{@link org.eclipse.emf.cdo.examples.company.impl.PurchaseOrderImpl + * Purchase Order}' class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.PurchaseOrderImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getPurchaseOrder() + * @generated + */ + EClass PURCHASE_ORDER = eINSTANCE.getPurchaseOrder(); + + /** + * The meta object literal for the 'Date' attribute feature. + * + * @generated + */ + EAttribute PURCHASE_ORDER__DATE = eINSTANCE.getPurchaseOrder_Date(); + + /** + * The meta object literal for the 'Supplier' reference feature. + * + * @generated + */ + EReference PURCHASE_ORDER__SUPPLIER = eINSTANCE.getPurchaseOrder_Supplier(); + + /** + * The meta object literal for the '{@link org.eclipse.emf.cdo.examples.company.impl.OrderDetailImpl + * Order Detail}' class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.OrderDetailImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getOrderDetail() + * @generated + */ + EClass ORDER_DETAIL = eINSTANCE.getOrderDetail(); + + /** + * The meta object literal for the 'Order' container reference feature. + * + * @generated + */ + EReference ORDER_DETAIL__ORDER = eINSTANCE.getOrderDetail_Order(); + + /** + * The meta object literal for the 'Product' reference feature. + * + * @generated + */ + EReference ORDER_DETAIL__PRODUCT = eINSTANCE.getOrderDetail_Product(); + + /** + * The meta object literal for the 'Price' attribute feature. + * + * @generated + */ + EAttribute ORDER_DETAIL__PRICE = eINSTANCE.getOrderDetail_Price(); + + /** + * The meta object literal for the '{@link org.eclipse.emf.cdo.examples.company.impl.OrderAddressImpl + * Order Address}' class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.OrderAddressImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getOrderAddress() + * @generated + */ + EClass ORDER_ADDRESS = eINSTANCE.getOrderAddress(); + + /** + * The meta object literal for the 'Test Attribute' attribute feature. + * + * @generated + */ + EAttribute ORDER_ADDRESS__TEST_ATTRIBUTE = eINSTANCE.getOrderAddress_TestAttribute(); + + /** + * The meta object literal for the '{@link org.eclipse.emf.cdo.examples.company.VAT VAT}' enum. + * + * @see org.eclipse.emf.cdo.examples.company.VAT + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getVAT() + * @generated + */ + EEnum VAT = eINSTANCE.getVAT(); + + /** + * The meta object literal for the '{@link org.eclipse.emf.cdo.examples.company.impl.CategoryImpl Category} + * ' class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.CategoryImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getCategory() + * @generated + */ + EClass CATEGORY = eINSTANCE.getCategory(); + + /** + * The meta object literal for the 'Name' attribute feature. + * + * @generated + */ + EAttribute CATEGORY__NAME = eINSTANCE.getCategory_Name(); + + /** + * The meta object literal for the 'Categories' containment reference list feature. + * + * @generated + */ + EReference CATEGORY__CATEGORIES = eINSTANCE.getCategory_Categories(); + + /** + * The meta object literal for the 'Products' containment reference list feature. + * + * @generated + */ + EReference CATEGORY__PRODUCTS = eINSTANCE.getCategory_Products(); + + /** + * The meta object literal for the '{@link org.eclipse.emf.cdo.examples.company.impl.ProductImpl Product}' + * class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.ProductImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getCompany() + * @generated + */ + EClass PRODUCT1 = eINSTANCE.getCompany(); + + /** + * The meta object literal for the 'Name' attribute feature. + * + * @generated + */ + EAttribute PRODUCT1__NAME = eINSTANCE.getCompany_Name(); + + /** + * The meta object literal for the 'Order Details' reference list feature. + * + * + * @generated + */ + EReference PRODUCT1__ORDER_DETAILS = eINSTANCE.getCompany_OrderDetails(); + + /** + * The meta object literal for the 'Vat' attribute feature. + * + * @generated + */ + EAttribute PRODUCT1__VAT = eINSTANCE.getCompany_Vat(); + + /** + * The meta object literal for the 'Description' attribute feature. + * + * @generated + */ + EAttribute PRODUCT1__DESCRIPTION = eINSTANCE.getCompany_Description(); + + /** + * The meta object literal for the '{@link org.eclipse.emf.cdo.examples.company.impl.CompanyImpl Company}' + * class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getCompany() + * @generated + */ + EClass COMPANY = eINSTANCE.getCompany(); + + /** + * The meta object literal for the 'Categories' containment reference list feature. + * + * @generated + */ + EReference COMPANY__CATEGORIES = eINSTANCE.getCompany_Categories(); + + /** + * The meta object literal for the 'Suppliers' containment reference list feature. + * + * @generated + */ + EReference COMPANY__SUPPLIERS = eINSTANCE.getCompany_Suppliers(); + + /** + * The meta object literal for the 'Purchase Orders' containment reference list feature. + * + * @generated + */ + EReference COMPANY__PURCHASE_ORDERS = eINSTANCE.getCompany_PurchaseOrders(); + + /** + * The meta object literal for the 'Customers' containment reference list feature. + * + * @generated + */ + EReference COMPANY__CUSTOMERS = eINSTANCE.getCompany_Customers(); + + /** + * The meta object literal for the 'Sales Orders' containment reference list feature. + * + * @generated + */ + EReference COMPANY__SALES_ORDERS = eINSTANCE.getCompany_SalesOrders(); + + /** + * The meta object literal for the '{@link org.eclipse.emf.cdo.examples.company.impl.CustomerImpl Customer} + * ' class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.CustomerImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getCustomer() + * @generated + */ + EClass CUSTOMER = eINSTANCE.getCustomer(); + + /** + * The meta object literal for the 'Sales Orders' reference list feature. + * + * + * @generated + */ + EReference CUSTOMER__SALES_ORDERS = eINSTANCE.getCustomer_SalesOrders(); + + /** + * The meta object literal for the '{@link org.eclipse.emf.cdo.examples.company.impl.OrderImpl Order}' + * class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.OrderImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getOrder() + * @generated + */ + EClass ORDER = eINSTANCE.getOrder(); + + /** + * The meta object literal for the 'Order Details' containment reference list feature. + * + * @generated + */ + EReference ORDER__ORDER_DETAILS = eINSTANCE.getOrder_OrderDetails(); + + /** + * The meta object literal for the '{@link org.eclipse.emf.cdo.examples.company.impl.SalesOrderImpl + * Sales Order}' class. + * + * @see org.eclipse.emf.cdo.examples.company.impl.SalesOrderImpl + * @see org.eclipse.emf.cdo.examples.company.impl.CompanyPackageImpl#getSalesOrder() + * @generated + */ + EClass SALES_ORDER = eINSTANCE.getSalesOrder(); + + /** + * The meta object literal for the 'Id' attribute feature. + * + * @generated + */ + EAttribute SALES_ORDER__ID = eINSTANCE.getSalesOrder_Id(); + + /** + * The meta object literal for the 'Customer' reference feature. + * + * @generated + */ + EReference SALES_ORDER__CUSTOMER = eINSTANCE.getSalesOrder_Customer(); + + } + +} // CompanyPackage diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Customer.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Customer.java new file mode 100644 index 0000000000..2964f9596c --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Customer.java @@ -0,0 +1,55 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +import org.eclipse.emf.common.util.EList; + +/** + * A representation of the model object 'Customer'. + *

+ * The following features are supported: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.Customer#getSalesOrders Sales Orders}
  • + *
+ *

+ * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCustomer() + * @model + * @generated + */ +public interface Customer extends Address +{ + /** + * + * + * @generated + */ + String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * Returns the value of the 'Sales Orders' reference list. The list contents are of type + * {@link org.eclipse.emf.cdo.examples.company.SalesOrder}. It is bidirectional and its opposite is ' + * {@link org.eclipse.emf.cdo.examples.company.SalesOrder#getCustomer Customer}'. + *

+ * If the meaning of the 'Sales Orders' reference list isn't clear, there really should be more of a + * description here... + *

+ * + * + * @return the value of the 'Sales Orders' reference list. + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCustomer_SalesOrders() + * @see org.eclipse.emf.cdo.examples.company.SalesOrder#getCustomer + * @model opposite="customer" + * @generated + */ + EList getSalesOrders(); + +} // Customer diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Order.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Order.java new file mode 100644 index 0000000000..ceb6706514 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Order.java @@ -0,0 +1,56 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EObject; + +/** + * A representation of the model object 'Order'. + *

+ * The following features are supported: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.Order#getOrderDetails Order Details}
  • + *
+ *

+ * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getOrder() + * @model annotation="teneo.jpa value='@Entity(name=\"BaseOrder\")'" + * @generated + */ +public interface Order extends EObject +{ + /** + * + * + * @generated + */ + String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * Returns the value of the 'Order Details' containment reference list. The list contents are of type + * {@link org.eclipse.emf.cdo.examples.company.OrderDetail}. It is bidirectional and its opposite is ' + * {@link org.eclipse.emf.cdo.examples.company.OrderDetail#getOrder Order}'. + *

+ * If the meaning of the 'Order Details' containment reference list isn't clear, there really should be more + * of a description here... + *

+ * + * + * @return the value of the 'Order Details' containment reference list. + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getOrder_OrderDetails() + * @see org.eclipse.emf.cdo.examples.company.OrderDetail#getOrder + * @model opposite="order" containment="true" + * @generated + */ + EList getOrderDetails(); + +} // Order diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/OrderAddress.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/OrderAddress.java new file mode 100644 index 0000000000..5d40306b85 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/OrderAddress.java @@ -0,0 +1,62 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +/** + * A representation of the model object 'Order Address'. + *

+ * The following features are supported: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.OrderAddress#isTestAttribute Test Attribute}
  • + *
+ *

+ * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getOrderAddress() + * @model annotation="teneo.jpa value='@AssociationOverride(name=\"orderDetails\", joinColumns=@JoinColumn(name=\"orderdetails_orderaddressid\"))'" + * @generated + */ +public interface OrderAddress extends Address, Order, OrderDetail +{ + /** + * + * + * @generated + */ + String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * Returns the value of the 'Test Attribute' attribute. + *

+ * If the meaning of the 'Test Attribute' attribute isn't clear, there really should be more of a description + * here... + *

+ * + * + * @return the value of the 'Test Attribute' attribute. + * @see #setTestAttribute(boolean) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getOrderAddress_TestAttribute() + * @model + * @generated + */ + boolean isTestAttribute(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.OrderAddress#isTestAttribute + * Test Attribute}' attribute. + * + * @param value + * the new value of the 'Test Attribute' attribute. + * @see #isTestAttribute() + * @generated + */ + void setTestAttribute(boolean value); + +} // OrderAddress diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/OrderDetail.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/OrderDetail.java new file mode 100644 index 0000000000..532b3bf6dd --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/OrderDetail.java @@ -0,0 +1,123 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +import org.eclipse.emf.ecore.EObject; + +/** + * A representation of the model object 'Order Detail'. + *

+ * The following features are supported: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.OrderDetail#getOrder Order}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.OrderDetail#getProduct Product}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.OrderDetail#getPrice Price}
  • + *
+ *

+ * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getOrderDetail() + * @model + * @generated + */ +public interface OrderDetail extends EObject +{ + /** + * + * + * @generated + */ + String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * Returns the value of the 'Order' container reference. It is bidirectional and its opposite is ' + * {@link org.eclipse.emf.cdo.examples.company.Order#getOrderDetails Order Details}'. + *

+ * If the meaning of the 'Order' container reference isn't clear, there really should be more of a + * description here... + *

+ * + * + * @return the value of the 'Order' container reference. + * @see #setOrder(Order) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getOrderDetail_Order() + * @see org.eclipse.emf.cdo.examples.company.Order#getOrderDetails + * @model opposite="orderDetails" required="true" transient="false" + * @generated + */ + Order getOrder(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.OrderDetail#getOrder Order}' container + * reference. + * + * @param value + * the new value of the 'Order' container reference. + * @see #getOrder() + * @generated + */ + void setOrder(Order value); + + /** + * Returns the value of the 'Product' reference. It is bidirectional and its opposite is ' + * {@link org.eclipse.emf.cdo.examples.company.Product#getOrderDetails Order Details}'. + *

+ * If the meaning of the 'Product' reference isn't clear, there really should be more of a description + * here... + *

+ * + * + * @return the value of the 'Product' reference. + * @see #setProduct(Product) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getOrderDetail_Product() + * @see org.eclipse.emf.cdo.examples.company.Product#getOrderDetails + * @model opposite="orderDetails" + * @generated + */ + Product getProduct(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.OrderDetail#getProduct Product}' reference. + * + * + * @param value + * the new value of the 'Product' reference. + * @see #getProduct() + * @generated + */ + void setProduct(Product value); + + /** + * Returns the value of the 'Price' attribute. + *

+ * If the meaning of the 'Price' attribute isn't clear, there really should be more of a description here... + *

+ * + * + * @return the value of the 'Price' attribute. + * @see #setPrice(float) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getOrderDetail_Price() + * @model + * @generated + */ + float getPrice(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.OrderDetail#getPrice Price}' attribute. + * + * + * @param value + * the new value of the 'Price' attribute. + * @see #getPrice() + * @generated + */ + void setPrice(float value); + +} // OrderDetail diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Product.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Product.java new file mode 100644 index 0000000000..2c935fd518 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Product.java @@ -0,0 +1,141 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EObject; + +/** + * A representation of the model object 'Product'. + *

+ * The following features are supported: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.Product#getName Name}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.Product#getOrderDetails Order Details}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.Product#getVat Vat}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.Product#getDescription Description}
  • + *
+ *

+ * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCompany() + * @model + * @generated + */ +public interface Product extends EObject +{ + /** + * + * + * @generated + */ + String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * Returns the value of the 'Name' attribute. + *

+ * If the meaning of the 'Name' attribute isn't clear, there really should be more of a description here... + *

+ * + * + * @return the value of the 'Name' attribute. + * @see #setName(String) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCompany_Name() + * @model annotation="teneo.jpa value='@Id'" + * @generated + */ + String getName(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.Product#getName Name}' attribute. + * + * @param value + * the new value of the 'Name' attribute. + * @see #getName() + * @generated + */ + void setName(String value); + + /** + * Returns the value of the 'Order Details' reference list. The list contents are of type + * {@link org.eclipse.emf.cdo.examples.company.OrderDetail}. It is bidirectional and its opposite is ' + * {@link org.eclipse.emf.cdo.examples.company.OrderDetail#getProduct Product}'. + *

+ * If the meaning of the 'Order Details' reference list isn't clear, there really should be more of a + * description here... + *

+ * + * + * @return the value of the 'Order Details' reference list. + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCompany_OrderDetails() + * @see org.eclipse.emf.cdo.examples.company.OrderDetail#getProduct + * @model opposite="product" + * @generated + */ + EList getOrderDetails(); + + /** + * Returns the value of the 'Vat' attribute. The default value is "vat15". The literals + * are from the enumeration {@link org.eclipse.emf.cdo.examples.company.VAT}. + *

+ * If the meaning of the 'Vat' attribute isn't clear, there really should be more of a description here... + *

+ * + * + * @return the value of the 'Vat' attribute. + * @see org.eclipse.emf.cdo.examples.company.VAT + * @see #setVat(VAT) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCompany_Vat() + * @model default="vat15" + * @generated + */ + VAT getVat(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.Product#getVat Vat}' attribute. + * + * @param value + * the new value of the 'Vat' attribute. + * @see org.eclipse.emf.cdo.examples.company.VAT + * @see #getVat() + * @generated + */ + void setVat(VAT value); + + /** + * Returns the value of the 'Description' attribute. + *

+ * If the meaning of the 'Description' attribute isn't clear, there really should be more of a description + * here... + *

+ * + * + * @return the value of the 'Description' attribute. + * @see #setDescription(String) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getCompany_Description() + * @model transient="true" + * @generated + */ + String getDescription(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.Product#getDescription Description}' + * attribute. + * + * @param value + * the new value of the 'Description' attribute. + * @see #getDescription() + * @generated + */ + void setDescription(String value); + +} // Product diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/PurchaseOrder.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/PurchaseOrder.java new file mode 100644 index 0000000000..cfc7cb1628 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/PurchaseOrder.java @@ -0,0 +1,94 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +import java.util.Date; + +/** + * A representation of the model object 'Purchase Order'. + *

+ * The following features are supported: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.PurchaseOrder#getDate Date}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.PurchaseOrder#getSupplier Supplier}
  • + *
+ *

+ * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getPurchaseOrder() + * @model + * @generated + */ +public interface PurchaseOrder extends Order +{ + /** + * + * + * @generated + */ + String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * Returns the value of the 'Date' attribute. + *

+ * If the meaning of the 'Date' attribute isn't clear, there really should be more of a description here... + *

+ * + * + * @return the value of the 'Date' attribute. + * @see #setDate(Date) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getPurchaseOrder_Date() + * @model + * @generated + */ + Date getDate(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.PurchaseOrder#getDate Date}' attribute. + * + * + * @param value + * the new value of the 'Date' attribute. + * @see #getDate() + * @generated + */ + void setDate(Date value); + + /** + * Returns the value of the 'Supplier' reference. It is bidirectional and its opposite is ' + * {@link org.eclipse.emf.cdo.examples.company.Supplier#getPurchaseOrders Purchase Orders}'. + *

+ * If the meaning of the 'Supplier' reference isn't clear, there really should be more of a description + * here... + *

+ * + * + * @return the value of the 'Supplier' reference. + * @see #setSupplier(Supplier) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getPurchaseOrder_Supplier() + * @see org.eclipse.emf.cdo.examples.company.Supplier#getPurchaseOrders + * @model opposite="purchaseOrders" required="true" + * @generated + */ + Supplier getSupplier(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.PurchaseOrder#getSupplier Supplier}' + * reference. + * + * @param value + * the new value of the 'Supplier' reference. + * @see #getSupplier() + * @generated + */ + void setSupplier(Supplier value); + +} // PurchaseOrder diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/SalesOrder.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/SalesOrder.java new file mode 100644 index 0000000000..ed26ddf951 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/SalesOrder.java @@ -0,0 +1,91 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +/** + * A representation of the model object 'Sales Order'. + *

+ * The following features are supported: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.SalesOrder#getId Id}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.SalesOrder#getCustomer Customer}
  • + *
+ *

+ * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getSalesOrder() + * @model + * @generated + */ +public interface SalesOrder extends Order +{ + /** + * + * + * @generated + */ + String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * Returns the value of the 'Id' attribute. + *

+ * If the meaning of the 'Id' attribute isn't clear, there really should be more of a description here... + *

+ * + * + * @return the value of the 'Id' attribute. + * @see #setId(int) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getSalesOrder_Id() + * @model + * @generated + */ + int getId(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.SalesOrder#getId Id}' attribute. + * + * @param value + * the new value of the 'Id' attribute. + * @see #getId() + * @generated + */ + void setId(int value); + + /** + * Returns the value of the 'Customer' reference. It is bidirectional and its opposite is ' + * {@link org.eclipse.emf.cdo.examples.company.Customer#getSalesOrders Sales Orders}'. + *

+ * If the meaning of the 'Customer' reference isn't clear, there really should be more of a description + * here... + *

+ * + * + * @return the value of the 'Customer' reference. + * @see #setCustomer(Customer) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getSalesOrder_Customer() + * @see org.eclipse.emf.cdo.examples.company.Customer#getSalesOrders + * @model opposite="salesOrders" required="true" + * @generated + */ + Customer getCustomer(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.SalesOrder#getCustomer Customer}' + * reference. + * + * @param value + * the new value of the 'Customer' reference. + * @see #getCustomer() + * @generated + */ + void setCustomer(Customer value); + +} // SalesOrder diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Supplier.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Supplier.java new file mode 100644 index 0000000000..8e7b794ccd --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/Supplier.java @@ -0,0 +1,84 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +import org.eclipse.emf.common.util.EList; + +/** + * A representation of the model object 'Supplier'. + *

+ * The following features are supported: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.Supplier#getPurchaseOrders Purchase Orders}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.Supplier#isPreferred Preferred}
  • + *
+ *

+ * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getSupplier() + * @model + * @generated + */ +public interface Supplier extends Address +{ + /** + * + * + * @generated + */ + String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * Returns the value of the 'Purchase Orders' reference list. The list contents are of type + * {@link org.eclipse.emf.cdo.examples.company.PurchaseOrder}. It is bidirectional and its opposite is ' + * {@link org.eclipse.emf.cdo.examples.company.PurchaseOrder#getSupplier Supplier}'. + *

+ * If the meaning of the 'Purchase Orders' reference list isn't clear, there really should be more of a + * description here... + *

+ * + * + * @return the value of the 'Purchase Orders' reference list. + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getSupplier_PurchaseOrders() + * @see org.eclipse.emf.cdo.examples.company.PurchaseOrder#getSupplier + * @model opposite="supplier" + * @generated + */ + EList getPurchaseOrders(); + + /** + * Returns the value of the 'Preferred' attribute. The default value is "true". + *

+ * If the meaning of the 'Preferred' attribute isn't clear, there really should be more of a description + * here... + *

+ * + * + * @return the value of the 'Preferred' attribute. + * @see #setPreferred(boolean) + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getSupplier_Preferred() + * @model default="true" + * @generated + */ + boolean isPreferred(); + + /** + * Sets the value of the '{@link org.eclipse.emf.cdo.examples.company.Supplier#isPreferred Preferred}' attribute. + * + * + * @param value + * the new value of the 'Preferred' attribute. + * @see #isPreferred() + * @generated + */ + void setPreferred(boolean value); + +} // Supplier diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/VAT.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/VAT.java new file mode 100644 index 0000000000..bc16721b43 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/VAT.java @@ -0,0 +1,254 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company; + +import org.eclipse.emf.common.util.Enumerator; + +import java.util.Arrays; +import java.util.Collections; +import java.util.List; + +/** + * A representation of the literals of the enumeration 'VAT', and utility + * methods for working with them. + * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#getVAT() + * @model + * @generated + */ +public enum VAT implements Enumerator +{ + /** + * The 'Vat0' literal object. + * + * @see #VAT0_VALUE + * @generated + * @ordered + */ + VAT0(0, "vat0", "vat0"), + + /** + * The 'Vat7' literal object. + * + * @see #VAT7_VALUE + * @generated + * @ordered + */ + VAT7(7, "vat7", "vat7"), + + /** + * The 'Vat15' literal object. + * + * @see #VAT15_VALUE + * @generated + * @ordered + */ + VAT15(15, "vat15", "vat15"); + + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * The 'Vat0' literal value. + *

+ * If the meaning of 'Vat0' literal object isn't clear, there really should be more of a description + * here... + *

+ * + * + * @see #VAT0 + * @model name="vat0" + * @generated + * @ordered + */ + public static final int VAT0_VALUE = 0; + + /** + * The 'Vat7' literal value. + *

+ * If the meaning of 'Vat7' literal object isn't clear, there really should be more of a description + * here... + *

+ * + * + * @see #VAT7 + * @model name="vat7" + * @generated + * @ordered + */ + public static final int VAT7_VALUE = 7; + + /** + * The 'Vat15' literal value. + *

+ * If the meaning of 'Vat15' literal object isn't clear, there really should be more of a description + * here... + *

+ * + * + * @see #VAT15 + * @model name="vat15" + * @generated + * @ordered + */ + public static final int VAT15_VALUE = 15; + + /** + * An array of all the 'VAT' enumerators. + * + * @generated + */ + private static final VAT[] VALUES_ARRAY = new VAT[] { VAT0, VAT7, VAT15, }; + + /** + * A public read-only list of all the 'VAT' enumerators. + * + * @generated + */ + public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); + + /** + * Returns the 'VAT' literal with the specified literal value. + * + * @generated + */ + public static VAT get(String literal) + { + for (int i = 0; i < VALUES_ARRAY.length; ++i) + { + VAT result = VALUES_ARRAY[i]; + if (result.toString().equals(literal)) + { + return result; + } + } + return null; + } + + /** + * Returns the 'VAT' literal with the specified name. + * + * @generated + */ + public static VAT getByName(String name) + { + for (int i = 0; i < VALUES_ARRAY.length; ++i) + { + VAT result = VALUES_ARRAY[i]; + if (result.getName().equals(name)) + { + return result; + } + } + return null; + } + + /** + * Returns the 'VAT' literal with the specified integer value. + * + * @generated + */ + public static VAT get(int value) + { + switch (value) + { + case VAT0_VALUE: + return VAT0; + case VAT7_VALUE: + return VAT7; + case VAT15_VALUE: + return VAT15; + } + return null; + } + + /** + * + * + * @generated + */ + private final int value; + + /** + * + * + * @generated + */ + private final String name; + + /** + * + * + * @generated + */ + private final String literal; + + /** + * Only this class can construct instances. + * + * @generated + */ + private VAT(int value, String name, String literal) + { + this.value = value; + this.name = name; + this.literal = literal; + } + + /** + * + * + * @generated + */ + public int getValue() + { + return value; + } + + /** + * + * + * @generated + */ + public String getName() + { + return name; + } + + /** + * + * + * @generated + */ + public String getLiteral() + { + return literal; + } + + /** + * Returns the literal value of the enumerator, which is its string representation. + * + * @generated + */ + @Override + public String toString() + { + return literal; + } + +} // VAT diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/AddressImpl.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/AddressImpl.java new file mode 100644 index 0000000000..21df1af7fc --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/AddressImpl.java @@ -0,0 +1,134 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.impl; + +import org.eclipse.emf.cdo.examples.company.Address; +import org.eclipse.emf.cdo.examples.company.CompanyPackage; + +import org.eclipse.emf.internal.cdo.CDOObjectImpl; + +import org.eclipse.emf.ecore.EClass; + +/** + * An implementation of the model object 'Address'. + *

+ * The following features are implemented: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.AddressImpl#getName Name}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.AddressImpl#getStreet Street}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.AddressImpl#getCity City}
  • + *
+ *

+ * + * @generated + */ +public class AddressImpl extends CDOObjectImpl implements Address +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * + * + * @generated + */ + protected AddressImpl() + { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() + { + return CompanyPackage.Literals.ADDRESS; + } + + /** + * + * + * @generated + */ + @Override + protected int eStaticFeatureCount() + { + return 0; + } + + /** + * + * + * @generated + */ + public String getName() + { + return (String)eGet(CompanyPackage.Literals.ADDRESS__NAME, true); + } + + /** + * + * + * @generated + */ + public void setName(String newName) + { + eSet(CompanyPackage.Literals.ADDRESS__NAME, newName); + } + + /** + * + * + * @generated + */ + public String getStreet() + { + return (String)eGet(CompanyPackage.Literals.ADDRESS__STREET, true); + } + + /** + * + * + * @generated + */ + public void setStreet(String newStreet) + { + eSet(CompanyPackage.Literals.ADDRESS__STREET, newStreet); + } + + /** + * + * + * @generated + */ + public String getCity() + { + return (String)eGet(CompanyPackage.Literals.ADDRESS__CITY, true); + } + + /** + * + * + * @generated + */ + public void setCity(String newCity) + { + eSet(CompanyPackage.Literals.ADDRESS__CITY, newCity); + } + +} // AddressImpl diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CategoryImpl.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CategoryImpl.java new file mode 100644 index 0000000000..3ea911aa7a --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CategoryImpl.java @@ -0,0 +1,118 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.impl; + +import org.eclipse.emf.cdo.examples.company.Category; +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.Product; + +import org.eclipse.emf.internal.cdo.CDOObjectImpl; + +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EClass; + +/** + * An implementation of the model object 'Category'. + *

+ * The following features are implemented: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.CategoryImpl#getName Name}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.CategoryImpl#getCategories Categories}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.CategoryImpl#getProducts Products}
  • + *
+ *

+ * + * @generated + */ +public class CategoryImpl extends CDOObjectImpl implements Category +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * + * + * @generated + */ + protected CategoryImpl() + { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() + { + return CompanyPackage.Literals.CATEGORY; + } + + /** + * + * + * @generated + */ + @Override + protected int eStaticFeatureCount() + { + return 0; + } + + /** + * + * + * @generated + */ + public String getName() + { + return (String)eGet(CompanyPackage.Literals.CATEGORY__NAME, true); + } + + /** + * + * + * @generated + */ + public void setName(String newName) + { + eSet(CompanyPackage.Literals.CATEGORY__NAME, newName); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getCategories() + { + return (EList)eGet(CompanyPackage.Literals.CATEGORY__CATEGORIES, true); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getProducts() + { + return (EList)eGet(CompanyPackage.Literals.CATEGORY__PRODUCTS, true); + } + +} // CategoryImpl diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CompanyFactoryImpl.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CompanyFactoryImpl.java new file mode 100644 index 0000000000..a6b43d8729 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CompanyFactoryImpl.java @@ -0,0 +1,322 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.impl; + +import org.eclipse.emf.cdo.examples.company.Address; +import org.eclipse.emf.cdo.examples.company.Category; +import org.eclipse.emf.cdo.examples.company.Company; +import org.eclipse.emf.cdo.examples.company.CompanyFactory; +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.Customer; +import org.eclipse.emf.cdo.examples.company.Order; +import org.eclipse.emf.cdo.examples.company.OrderAddress; +import org.eclipse.emf.cdo.examples.company.OrderDetail; +import org.eclipse.emf.cdo.examples.company.Product; +import org.eclipse.emf.cdo.examples.company.PurchaseOrder; +import org.eclipse.emf.cdo.examples.company.SalesOrder; +import org.eclipse.emf.cdo.examples.company.Supplier; +import org.eclipse.emf.cdo.examples.company.VAT; + +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EDataType; +import org.eclipse.emf.ecore.EObject; +import org.eclipse.emf.ecore.EPackage; +import org.eclipse.emf.ecore.impl.EFactoryImpl; +import org.eclipse.emf.ecore.plugin.EcorePlugin; + +/** + * An implementation of the model Factory. + * + * @generated + */ +public class CompanyFactoryImpl extends EFactoryImpl implements CompanyFactory +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * Creates the default factory implementation. + * + * @generated + */ + public static CompanyFactory init() + { + try + { + CompanyFactory theCompanyFactory = (CompanyFactory)EPackage.Registry.INSTANCE + .getEFactory("http://www.eclipse.org/emf/CDO/examples/company/1.0.0"); + if (theCompanyFactory != null) + { + return theCompanyFactory; + } + } + catch (Exception exception) + { + EcorePlugin.INSTANCE.log(exception); + } + return new CompanyFactoryImpl(); + } + + /** + * Creates an instance of the factory. + * + * @generated + */ + public CompanyFactoryImpl() + { + super(); + } + + /** + * + * + * @generated + */ + @Override + public EObject create(EClass eClass) + { + switch (eClass.getClassifierID()) + { + case CompanyPackage.ADDRESS: + return createAddress(); + case CompanyPackage.COMPANY: + return createCompany(); + case CompanyPackage.SUPPLIER: + return createSupplier(); + case CompanyPackage.CUSTOMER: + return createCustomer(); + case CompanyPackage.ORDER: + return createOrder(); + case CompanyPackage.ORDER_DETAIL: + return createOrderDetail(); + case CompanyPackage.PURCHASE_ORDER: + return createPurchaseOrder(); + case CompanyPackage.SALES_ORDER: + return createSalesOrder(); + case CompanyPackage.CATEGORY: + return createCategory(); + case CompanyPackage.PRODUCT1: + return createProduct(); + case CompanyPackage.ORDER_ADDRESS: + return createOrderAddress(); + default: + throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); + } + } + + /** + * + * + * @generated + */ + @Override + public Object createFromString(EDataType eDataType, String initialValue) + { + switch (eDataType.getClassifierID()) + { + case CompanyPackage.VAT: + return createVATFromString(eDataType, initialValue); + default: + throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier"); + } + } + + /** + * + * + * @generated + */ + @Override + public String convertToString(EDataType eDataType, Object instanceValue) + { + switch (eDataType.getClassifierID()) + { + case CompanyPackage.VAT: + return convertVATToString(eDataType, instanceValue); + default: + throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier"); + } + } + + /** + * + * + * @generated + */ + public Address createAddress() + { + AddressImpl address = new AddressImpl(); + return address; + } + + /** + * + * + * @generated + */ + public Supplier createSupplier() + { + SupplierImpl supplier = new SupplierImpl(); + return supplier; + } + + /** + * + * + * @generated + */ + public PurchaseOrder createPurchaseOrder() + { + PurchaseOrderImpl purchaseOrder = new PurchaseOrderImpl(); + return purchaseOrder; + } + + /** + * + * + * @generated + */ + public OrderDetail createOrderDetail() + { + OrderDetailImpl orderDetail = new OrderDetailImpl(); + return orderDetail; + } + + /** + * + * + * @generated + */ + public OrderAddress createOrderAddress() + { + OrderAddressImpl orderAddress = new OrderAddressImpl(); + return orderAddress; + } + + /** + * + * + * @generated + */ + public VAT createVATFromString(EDataType eDataType, String initialValue) + { + VAT result = VAT.get(initialValue); + if (result == null) + { + throw new IllegalArgumentException("The value '" + initialValue + "' is not a valid enumerator of '" + + eDataType.getName() + "'"); + } + return result; + } + + /** + * + * + * @generated + */ + public String convertVATToString(EDataType eDataType, Object instanceValue) + { + return instanceValue == null ? null : instanceValue.toString(); + } + + /** + * + * + * @generated + */ + public Category createCategory() + { + CategoryImpl category = new CategoryImpl(); + return category; + } + + /** + * + * + * @generated + */ + public Product createProduct() + { + ProductImpl product = new ProductImpl(); + return product; + } + + /** + * + * + * @generated + */ + public Company createCompany() + { + CompanyImpl company = new CompanyImpl(); + return company; + } + + /** + * + * + * @generated + */ + public Customer createCustomer() + { + CustomerImpl customer = new CustomerImpl(); + return customer; + } + + /** + * + * + * @generated + */ + public Order createOrder() + { + OrderImpl order = new OrderImpl(); + return order; + } + + /** + * + * + * @generated + */ + public SalesOrder createSalesOrder() + { + SalesOrderImpl salesOrder = new SalesOrderImpl(); + return salesOrder; + } + + /** + * + * + * @generated + */ + public CompanyPackage getCompanyPackage() + { + return (CompanyPackage)getEPackage(); + } + + /** + * + * + * @deprecated + * @generated + */ + @Deprecated + public static CompanyPackage getPackage() + { + return CompanyPackage.eINSTANCE; + } + +} // CompanyFactoryImpl diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CompanyImpl.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CompanyImpl.java new file mode 100644 index 0000000000..0d00c0cd53 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CompanyImpl.java @@ -0,0 +1,124 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.impl; + +import org.eclipse.emf.cdo.examples.company.Category; +import org.eclipse.emf.cdo.examples.company.Company; +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.Customer; +import org.eclipse.emf.cdo.examples.company.PurchaseOrder; +import org.eclipse.emf.cdo.examples.company.SalesOrder; +import org.eclipse.emf.cdo.examples.company.Supplier; + +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EClass; + +/** + * An implementation of the model object 'Company'. + *

+ * The following features are implemented: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.CompanyImpl#getCategories Categories}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.CompanyImpl#getSuppliers Suppliers}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.CompanyImpl#getCustomers Customers}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.CompanyImpl#getPurchaseOrders Purchase Orders}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.CompanyImpl#getSalesOrders Sales Orders}
  • + *
+ *

+ * + * @generated + */ +public class CompanyImpl extends AddressImpl implements Company +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * + * + * @generated + */ + protected CompanyImpl() + { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() + { + return CompanyPackage.Literals.COMPANY; + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getCategories() + { + return (EList)eGet(CompanyPackage.Literals.COMPANY__CATEGORIES, true); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getSuppliers() + { + return (EList)eGet(CompanyPackage.Literals.COMPANY__SUPPLIERS, true); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getPurchaseOrders() + { + return (EList)eGet(CompanyPackage.Literals.COMPANY__PURCHASE_ORDERS, true); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getCustomers() + { + return (EList)eGet(CompanyPackage.Literals.COMPANY__CUSTOMERS, true); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getSalesOrders() + { + return (EList)eGet(CompanyPackage.Literals.COMPANY__SALES_ORDERS, true); + } + +} // CompanyImpl diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CompanyPackageImpl.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CompanyPackageImpl.java new file mode 100644 index 0000000000..1418d8c70f --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CompanyPackageImpl.java @@ -0,0 +1,837 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.impl; + +import org.eclipse.emf.cdo.examples.company.Address; +import org.eclipse.emf.cdo.examples.company.Category; +import org.eclipse.emf.cdo.examples.company.Company; +import org.eclipse.emf.cdo.examples.company.CompanyFactory; +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.Customer; +import org.eclipse.emf.cdo.examples.company.Order; +import org.eclipse.emf.cdo.examples.company.OrderAddress; +import org.eclipse.emf.cdo.examples.company.OrderDetail; +import org.eclipse.emf.cdo.examples.company.Product; +import org.eclipse.emf.cdo.examples.company.PurchaseOrder; +import org.eclipse.emf.cdo.examples.company.SalesOrder; +import org.eclipse.emf.cdo.examples.company.Supplier; + +import org.eclipse.emf.ecore.EAttribute; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EEnum; +import org.eclipse.emf.ecore.EPackage; +import org.eclipse.emf.ecore.EReference; +import org.eclipse.emf.ecore.impl.EPackageImpl; + +/** + * An implementation of the model Package. + * + * @generated + */ +public class CompanyPackageImpl extends EPackageImpl implements CompanyPackage +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * + * + * @generated + */ + private EClass addressEClass = null; + + /** + * + * + * @generated + */ + private EClass supplierEClass = null; + + /** + * + * + * @generated + */ + private EClass purchaseOrderEClass = null; + + /** + * + * + * @generated + */ + private EClass orderDetailEClass = null; + + /** + * + * + * @generated + */ + private EClass orderAddressEClass = null; + + /** + * + * + * @generated + */ + private EEnum vatEEnum = null; + + /** + * + * + * @generated + */ + private EClass categoryEClass = null; + + /** + * + * + * @generated + */ + private EClass productEClass = null; + + /** + * + * + * @generated + */ + private EClass companyEClass = null; + + /** + * + * + * @generated + */ + private EClass customerEClass = null; + + /** + * + * + * @generated + */ + private EClass orderEClass = null; + + /** + * + * + * @generated + */ + private EClass salesOrderEClass = null; + + /** + * Creates an instance of the model Package, registered with {@link org.eclipse.emf.ecore.EPackage.Registry + * EPackage.Registry} by the package package URI value. + *

+ * Note: the correct way to create the package is via the static factory method {@link #init init()}, which also + * performs initialization of the package, or returns the registered package, if one already exists. + * + * @see org.eclipse.emf.ecore.EPackage.Registry + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage#eNS_URI + * @see #init() + * @generated + */ + private CompanyPackageImpl() + { + super(eNS_URI, CompanyFactory.eINSTANCE); + } + + /** + * + * + * @generated + */ + private static boolean isInited = false; + + /** + * Creates, registers, and initializes the Package for this model, and for any others upon which it depends. + *

+ * This method is used to initialize {@link CompanyPackage#eINSTANCE} when that field is accessed. Clients should not + * invoke it directly. Instead, they should simply access that field to obtain the package. + * + * + * @see #eNS_URI + * @see #createPackageContents() + * @see #initializePackageContents() + * @generated + */ + public static CompanyPackage init() + { + if (isInited) + { + return (CompanyPackage)EPackage.Registry.INSTANCE.getEPackage(CompanyPackage.eNS_URI); + } + + // Obtain or create and register package + CompanyPackageImpl theCompanyPackage = (CompanyPackageImpl)(EPackage.Registry.INSTANCE.get(eNS_URI) instanceof CompanyPackageImpl ? EPackage.Registry.INSTANCE + .get(eNS_URI) + : new CompanyPackageImpl()); + + isInited = true; + + // Create package meta-data objects + theCompanyPackage.createPackageContents(); + + // Initialize created meta-data + theCompanyPackage.initializePackageContents(); + + // Mark meta-data to indicate it can't be changed + theCompanyPackage.freeze(); + + // Update the registry and return the package + EPackage.Registry.INSTANCE.put(CompanyPackage.eNS_URI, theCompanyPackage); + return theCompanyPackage; + } + + /** + * + * + * @generated + */ + public EClass getAddress() + { + return addressEClass; + } + + /** + * + * + * @generated + */ + public EAttribute getAddress_Name() + { + return (EAttribute)addressEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EAttribute getAddress_Street() + { + return (EAttribute)addressEClass.getEStructuralFeatures().get(1); + } + + /** + * + * + * @generated + */ + public EAttribute getAddress_City() + { + return (EAttribute)addressEClass.getEStructuralFeatures().get(2); + } + + /** + * + * + * @generated + */ + public EClass getSupplier() + { + return supplierEClass; + } + + /** + * + * + * @generated + */ + public EReference getSupplier_PurchaseOrders() + { + return (EReference)supplierEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EAttribute getSupplier_Preferred() + { + return (EAttribute)supplierEClass.getEStructuralFeatures().get(1); + } + + /** + * + * + * @generated + */ + public EClass getPurchaseOrder() + { + return purchaseOrderEClass; + } + + /** + * + * + * @generated + */ + public EAttribute getPurchaseOrder_Date() + { + return (EAttribute)purchaseOrderEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EReference getPurchaseOrder_Supplier() + { + return (EReference)purchaseOrderEClass.getEStructuralFeatures().get(1); + } + + /** + * + * + * @generated + */ + public EClass getOrderDetail() + { + return orderDetailEClass; + } + + /** + * + * + * @generated + */ + public EReference getOrderDetail_Order() + { + return (EReference)orderDetailEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EReference getOrderDetail_Product() + { + return (EReference)orderDetailEClass.getEStructuralFeatures().get(1); + } + + /** + * + * + * @generated + */ + public EAttribute getOrderDetail_Price() + { + return (EAttribute)orderDetailEClass.getEStructuralFeatures().get(2); + } + + /** + * + * + * @generated + */ + public EClass getOrderAddress() + { + return orderAddressEClass; + } + + /** + * + * + * @generated + */ + public EAttribute getOrderAddress_TestAttribute() + { + return (EAttribute)orderAddressEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EEnum getVAT() + { + return vatEEnum; + } + + /** + * + * + * @generated + */ + public EClass getCategory() + { + return categoryEClass; + } + + /** + * + * + * @generated + */ + public EAttribute getCategory_Name() + { + return (EAttribute)categoryEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EReference getCategory_Categories() + { + return (EReference)categoryEClass.getEStructuralFeatures().get(1); + } + + /** + * + * + * @generated + */ + public EReference getCategory_Products() + { + return (EReference)categoryEClass.getEStructuralFeatures().get(2); + } + + /** + * + * + * @generated + */ + public EClass getProduct() + { + return productEClass; + } + + /** + * + * + * @generated + */ + public EAttribute getCompany_Name() + { + return (EAttribute)productEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EReference getCompany_OrderDetails() + { + return (EReference)productEClass.getEStructuralFeatures().get(1); + } + + /** + * + * + * @generated + */ + public EAttribute getCompany_Vat() + { + return (EAttribute)productEClass.getEStructuralFeatures().get(2); + } + + /** + * + * + * @generated + */ + public EAttribute getCompany_Description() + { + return (EAttribute)productEClass.getEStructuralFeatures().get(3); + } + + /** + * + * + * @generated + */ + public EClass getCompany() + { + return companyEClass; + } + + /** + * + * + * @generated + */ + public EReference getCompany_Categories() + { + return (EReference)companyEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EReference getCompany_Suppliers() + { + return (EReference)companyEClass.getEStructuralFeatures().get(1); + } + + /** + * + * + * @generated + */ + public EReference getCompany_PurchaseOrders() + { + return (EReference)companyEClass.getEStructuralFeatures().get(3); + } + + /** + * + * + * @generated + */ + public EReference getCompany_Customers() + { + return (EReference)companyEClass.getEStructuralFeatures().get(2); + } + + /** + * + * + * @generated + */ + public EReference getCompany_SalesOrders() + { + return (EReference)companyEClass.getEStructuralFeatures().get(4); + } + + /** + * + * + * @generated + */ + public EClass getCustomer() + { + return customerEClass; + } + + /** + * + * + * @generated + */ + public EReference getCustomer_SalesOrders() + { + return (EReference)customerEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EClass getOrder() + { + return orderEClass; + } + + /** + * + * + * @generated + */ + public EReference getOrder_OrderDetails() + { + return (EReference)orderEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EClass getSalesOrder() + { + return salesOrderEClass; + } + + /** + * + * + * @generated + */ + public EAttribute getSalesOrder_Id() + { + return (EAttribute)salesOrderEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + public EReference getSalesOrder_Customer() + { + return (EReference)salesOrderEClass.getEStructuralFeatures().get(1); + } + + /** + * + * + * @generated + */ + public CompanyFactory getCompanyFactory() + { + return (CompanyFactory)getEFactoryInstance(); + } + + /** + * + * + * @generated + */ + private boolean isCreated = false; + + /** + * Creates the meta-model objects for the package. This method is guarded to have no affect on any invocation but its + * first. + * + * @generated + */ + public void createPackageContents() + { + if (isCreated) + { + return; + } + isCreated = true; + + // Create classes and their features + addressEClass = createEClass(ADDRESS); + createEAttribute(addressEClass, ADDRESS__NAME); + createEAttribute(addressEClass, ADDRESS__STREET); + createEAttribute(addressEClass, ADDRESS__CITY); + + companyEClass = createEClass(COMPANY); + createEReference(companyEClass, COMPANY__CATEGORIES); + createEReference(companyEClass, COMPANY__SUPPLIERS); + createEReference(companyEClass, COMPANY__CUSTOMERS); + createEReference(companyEClass, COMPANY__PURCHASE_ORDERS); + createEReference(companyEClass, COMPANY__SALES_ORDERS); + + supplierEClass = createEClass(SUPPLIER); + createEReference(supplierEClass, SUPPLIER__PURCHASE_ORDERS); + createEAttribute(supplierEClass, SUPPLIER__PREFERRED); + + customerEClass = createEClass(CUSTOMER); + createEReference(customerEClass, CUSTOMER__SALES_ORDERS); + + orderEClass = createEClass(ORDER); + createEReference(orderEClass, ORDER__ORDER_DETAILS); + + orderDetailEClass = createEClass(ORDER_DETAIL); + createEReference(orderDetailEClass, ORDER_DETAIL__ORDER); + createEReference(orderDetailEClass, ORDER_DETAIL__PRODUCT); + createEAttribute(orderDetailEClass, ORDER_DETAIL__PRICE); + + purchaseOrderEClass = createEClass(PURCHASE_ORDER); + createEAttribute(purchaseOrderEClass, PURCHASE_ORDER__DATE); + createEReference(purchaseOrderEClass, PURCHASE_ORDER__SUPPLIER); + + salesOrderEClass = createEClass(SALES_ORDER); + createEAttribute(salesOrderEClass, SALES_ORDER__ID); + createEReference(salesOrderEClass, SALES_ORDER__CUSTOMER); + + categoryEClass = createEClass(CATEGORY); + createEAttribute(categoryEClass, CATEGORY__NAME); + createEReference(categoryEClass, CATEGORY__CATEGORIES); + createEReference(categoryEClass, CATEGORY__PRODUCTS); + + productEClass = createEClass(PRODUCT1); + createEAttribute(productEClass, PRODUCT1__NAME); + createEReference(productEClass, PRODUCT1__ORDER_DETAILS); + createEAttribute(productEClass, PRODUCT1__VAT); + createEAttribute(productEClass, PRODUCT1__DESCRIPTION); + + orderAddressEClass = createEClass(ORDER_ADDRESS); + createEAttribute(orderAddressEClass, ORDER_ADDRESS__TEST_ATTRIBUTE); + + // Create enums + vatEEnum = createEEnum(VAT); + } + + /** + * + * + * @generated + */ + private boolean isInitialized = false; + + /** + * Complete the initialization of the package and its meta-model. This method is guarded to have no affect on any + * invocation but its first. + * + * @generated + */ + public void initializePackageContents() + { + if (isInitialized) + { + return; + } + isInitialized = true; + + // Initialize package + setName(eNAME); + setNsPrefix(eNS_PREFIX); + setNsURI(eNS_URI); + + // Create type parameters + + // Set bounds for type parameters + + // Add supertypes to classes + companyEClass.getESuperTypes().add(getAddress()); + supplierEClass.getESuperTypes().add(getAddress()); + customerEClass.getESuperTypes().add(getAddress()); + purchaseOrderEClass.getESuperTypes().add(getOrder()); + salesOrderEClass.getESuperTypes().add(getOrder()); + orderAddressEClass.getESuperTypes().add(getAddress()); + orderAddressEClass.getESuperTypes().add(getOrder()); + orderAddressEClass.getESuperTypes().add(getOrderDetail()); + + // Initialize classes and features; add operations and parameters + initEClass(addressEClass, Address.class, "Address", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getAddress_Name(), ecorePackage.getEString(), "name", null, 0, 1, Address.class, !IS_TRANSIENT, + !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getAddress_Street(), ecorePackage.getEString(), "street", null, 0, 1, Address.class, !IS_TRANSIENT, + !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getAddress_City(), ecorePackage.getEString(), "city", null, 0, 1, Address.class, !IS_TRANSIENT, + !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + + initEClass(companyEClass, Company.class, "Company", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEReference(getCompany_Categories(), getCategory(), null, "categories", null, 0, -1, Company.class, + !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, + !IS_DERIVED, IS_ORDERED); + initEReference(getCompany_Suppliers(), getSupplier(), null, "suppliers", null, 0, -1, Company.class, !IS_TRANSIENT, + !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, + IS_ORDERED); + initEReference(getCompany_Customers(), getCustomer(), null, "customers", null, 0, -1, Company.class, !IS_TRANSIENT, + !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, + IS_ORDERED); + initEReference(getCompany_PurchaseOrders(), getPurchaseOrder(), null, "purchaseOrders", null, 0, -1, Company.class, + !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, + !IS_DERIVED, IS_ORDERED); + initEReference(getCompany_SalesOrders(), getSalesOrder(), null, "salesOrders", null, 0, -1, Company.class, + !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, + !IS_DERIVED, IS_ORDERED); + + initEClass(supplierEClass, Supplier.class, "Supplier", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEReference(getSupplier_PurchaseOrders(), getPurchaseOrder(), getPurchaseOrder_Supplier(), "purchaseOrders", + null, 0, -1, Supplier.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, + !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getSupplier_Preferred(), ecorePackage.getEBoolean(), "preferred", "true", 0, 1, Supplier.class, + !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + + initEClass(customerEClass, Customer.class, "Customer", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEReference(getCustomer_SalesOrders(), getSalesOrder(), getSalesOrder_Customer(), "salesOrders", null, 0, -1, + Customer.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, + IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + + initEClass(orderEClass, Order.class, "Order", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEReference(getOrder_OrderDetails(), getOrderDetail(), getOrderDetail_Order(), "orderDetails", null, 0, -1, + Order.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, + IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + + initEClass(orderDetailEClass, OrderDetail.class, "OrderDetail", !IS_ABSTRACT, !IS_INTERFACE, + IS_GENERATED_INSTANCE_CLASS); + initEReference(getOrderDetail_Order(), getOrder(), getOrder_OrderDetails(), "order", null, 1, 1, OrderDetail.class, + !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, + !IS_DERIVED, IS_ORDERED); + initEReference(getOrderDetail_Product(), getCompany(), getCompany_OrderDetails(), "product", null, 0, 1, + OrderDetail.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, + !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getOrderDetail_Price(), ecorePackage.getEFloat(), "price", null, 0, 1, OrderDetail.class, + !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + + initEClass(purchaseOrderEClass, PurchaseOrder.class, "PurchaseOrder", !IS_ABSTRACT, !IS_INTERFACE, + IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getPurchaseOrder_Date(), ecorePackage.getEDate(), "date", null, 0, 1, PurchaseOrder.class, + !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEReference(getPurchaseOrder_Supplier(), getSupplier(), getSupplier_PurchaseOrders(), "supplier", null, 1, 1, + PurchaseOrder.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, + !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + + initEClass(salesOrderEClass, SalesOrder.class, "SalesOrder", !IS_ABSTRACT, !IS_INTERFACE, + IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getSalesOrder_Id(), ecorePackage.getEInt(), "id", null, 0, 1, SalesOrder.class, !IS_TRANSIENT, + !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEReference(getSalesOrder_Customer(), getCustomer(), getCustomer_SalesOrders(), "customer", null, 1, 1, + SalesOrder.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, + !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + + initEClass(categoryEClass, Category.class, "Category", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getCategory_Name(), ecorePackage.getEString(), "name", null, 0, 1, Category.class, !IS_TRANSIENT, + !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEReference(getCategory_Categories(), getCategory(), null, "categories", null, 0, -1, Category.class, + !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, + !IS_DERIVED, IS_ORDERED); + initEReference(getCategory_Products(), getCompany(), null, "products", null, 0, -1, Category.class, !IS_TRANSIENT, + !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, + IS_ORDERED); + + initEClass(productEClass, Product.class, "Product", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getCompany_Name(), ecorePackage.getEString(), "name", null, 0, 1, Product.class, !IS_TRANSIENT, + !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEReference(getCompany_OrderDetails(), getOrderDetail(), getOrderDetail_Product(), "orderDetails", null, 0, -1, + Product.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, + IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getCompany_Vat(), getVAT(), "vat", "vat15", 0, 1, Product.class, !IS_TRANSIENT, !IS_VOLATILE, + IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + initEAttribute(getCompany_Description(), ecorePackage.getEString(), "description", null, 0, 1, Product.class, + IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + + initEClass(orderAddressEClass, OrderAddress.class, "OrderAddress", !IS_ABSTRACT, !IS_INTERFACE, + IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getOrderAddress_TestAttribute(), ecorePackage.getEBoolean(), "testAttribute", null, 0, 1, + OrderAddress.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, + IS_ORDERED); + + // Initialize enums and add enum literals + initEEnum(vatEEnum, org.eclipse.emf.cdo.examples.company.VAT.class, "VAT"); + addEEnumLiteral(vatEEnum, org.eclipse.emf.cdo.examples.company.VAT.VAT0); + addEEnumLiteral(vatEEnum, org.eclipse.emf.cdo.examples.company.VAT.VAT7); + addEEnumLiteral(vatEEnum, org.eclipse.emf.cdo.examples.company.VAT.VAT15); + + // Create resource + createResource(eNS_URI); + + // Create annotations + // teneo.jpa + createTeneoAnnotations(); + } + + /** + * Initializes the annotations for teneo.jpa. + * + * @generated + */ + protected void createTeneoAnnotations() + { + String source = "teneo.jpa"; + addAnnotation(orderEClass, source, new String[] { "value", "@Entity(name=\"BaseOrder\")" }); + addAnnotation(getCompany_Name(), source, new String[] { "value", "@Id" }); + addAnnotation(orderAddressEClass, source, new String[] { "value", + "@AssociationOverride(name=\"orderDetails\", joinColumns=@JoinColumn(name=\"orderdetails_orderaddressid\"))" }); + } + +} // CompanyPackageImpl diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CustomerImpl.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CustomerImpl.java new file mode 100644 index 0000000000..c73bcf6bb0 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/CustomerImpl.java @@ -0,0 +1,72 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.impl; + +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.Customer; +import org.eclipse.emf.cdo.examples.company.SalesOrder; + +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EClass; + +/** + * An implementation of the model object 'Customer'. + *

+ * The following features are implemented: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.CustomerImpl#getSalesOrders Sales Orders}
  • + *
+ *

+ * + * @generated + */ +public class CustomerImpl extends AddressImpl implements Customer +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * + * + * @generated + */ + protected CustomerImpl() + { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() + { + return CompanyPackage.Literals.CUSTOMER; + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getSalesOrders() + { + return (EList)eGet(CompanyPackage.Literals.CUSTOMER__SALES_ORDERS, true); + } + +} // CustomerImpl diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/OrderAddressImpl.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/OrderAddressImpl.java new file mode 100644 index 0000000000..2f4276fe00 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/OrderAddressImpl.java @@ -0,0 +1,228 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.impl; + +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.Order; +import org.eclipse.emf.cdo.examples.company.OrderAddress; +import org.eclipse.emf.cdo.examples.company.OrderDetail; +import org.eclipse.emf.cdo.examples.company.Product; + +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EClass; + +/** + * An implementation of the model object 'Order Address'. + *

+ * The following features are implemented: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.OrderAddressImpl#getOrderDetails Order Details}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.OrderAddressImpl#getOrder Order}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.OrderAddressImpl#getProduct Product}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.OrderAddressImpl#getPrice Price}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.OrderAddressImpl#isTestAttribute Test Attribute}
  • + *
+ *

+ * + * @generated + */ +public class OrderAddressImpl extends AddressImpl implements OrderAddress +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * + * + * @generated + */ + protected OrderAddressImpl() + { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() + { + return CompanyPackage.Literals.ORDER_ADDRESS; + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getOrderDetails() + { + return (EList)eGet(CompanyPackage.Literals.ORDER__ORDER_DETAILS, true); + } + + /** + * + * + * @generated + */ + public Order getOrder() + { + return (Order)eGet(CompanyPackage.Literals.ORDER_DETAIL__ORDER, true); + } + + /** + * + * + * @generated + */ + public void setOrder(Order newOrder) + { + eSet(CompanyPackage.Literals.ORDER_DETAIL__ORDER, newOrder); + } + + /** + * + * + * @generated + */ + public Product getProduct() + { + return (Product)eGet(CompanyPackage.Literals.ORDER_DETAIL__PRODUCT, true); + } + + /** + * + * + * @generated + */ + public void setProduct(Product newProduct) + { + eSet(CompanyPackage.Literals.ORDER_DETAIL__PRODUCT, newProduct); + } + + /** + * + * + * @generated + */ + public float getPrice() + { + return (Float)eGet(CompanyPackage.Literals.ORDER_DETAIL__PRICE, true); + } + + /** + * + * + * @generated + */ + public void setPrice(float newPrice) + { + eSet(CompanyPackage.Literals.ORDER_DETAIL__PRICE, newPrice); + } + + /** + * + * + * @generated + */ + public boolean isTestAttribute() + { + return (Boolean)eGet(CompanyPackage.Literals.ORDER_ADDRESS__TEST_ATTRIBUTE, true); + } + + /** + * + * + * @generated + */ + public void setTestAttribute(boolean newTestAttribute) + { + eSet(CompanyPackage.Literals.ORDER_ADDRESS__TEST_ATTRIBUTE, newTestAttribute); + } + + /** + * + * + * @generated + */ + @Override + public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) + { + if (baseClass == Order.class) + { + switch (derivedFeatureID) + { + case CompanyPackage.ORDER_ADDRESS__ORDER_DETAILS: + return CompanyPackage.ORDER__ORDER_DETAILS; + default: + return -1; + } + } + if (baseClass == OrderDetail.class) + { + switch (derivedFeatureID) + { + case CompanyPackage.ORDER_ADDRESS__ORDER: + return CompanyPackage.ORDER_DETAIL__ORDER; + case CompanyPackage.ORDER_ADDRESS__PRODUCT: + return CompanyPackage.ORDER_DETAIL__PRODUCT; + case CompanyPackage.ORDER_ADDRESS__PRICE: + return CompanyPackage.ORDER_DETAIL__PRICE; + default: + return -1; + } + } + return super.eBaseStructuralFeatureID(derivedFeatureID, baseClass); + } + + /** + * + * + * @generated + */ + @Override + public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) + { + if (baseClass == Order.class) + { + switch (baseFeatureID) + { + case CompanyPackage.ORDER__ORDER_DETAILS: + return CompanyPackage.ORDER_ADDRESS__ORDER_DETAILS; + default: + return -1; + } + } + if (baseClass == OrderDetail.class) + { + switch (baseFeatureID) + { + case CompanyPackage.ORDER_DETAIL__ORDER: + return CompanyPackage.ORDER_ADDRESS__ORDER; + case CompanyPackage.ORDER_DETAIL__PRODUCT: + return CompanyPackage.ORDER_ADDRESS__PRODUCT; + case CompanyPackage.ORDER_DETAIL__PRICE: + return CompanyPackage.ORDER_ADDRESS__PRICE; + default: + return -1; + } + } + return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass); + } + +} // OrderAddressImpl diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/OrderDetailImpl.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/OrderDetailImpl.java new file mode 100644 index 0000000000..8daa0545c9 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/OrderDetailImpl.java @@ -0,0 +1,136 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.impl; + +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.Order; +import org.eclipse.emf.cdo.examples.company.OrderDetail; +import org.eclipse.emf.cdo.examples.company.Product; + +import org.eclipse.emf.internal.cdo.CDOObjectImpl; + +import org.eclipse.emf.ecore.EClass; + +/** + * An implementation of the model object 'Order Detail'. + *

+ * The following features are implemented: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.OrderDetailImpl#getOrder Order}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.OrderDetailImpl#getProduct Product}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.OrderDetailImpl#getPrice Price}
  • + *
+ *

+ * + * @generated + */ +public class OrderDetailImpl extends CDOObjectImpl implements OrderDetail +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * + * + * @generated + */ + protected OrderDetailImpl() + { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() + { + return CompanyPackage.Literals.ORDER_DETAIL; + } + + /** + * + * + * @generated + */ + @Override + protected int eStaticFeatureCount() + { + return 0; + } + + /** + * + * + * @generated + */ + public Order getOrder() + { + return (Order)eGet(CompanyPackage.Literals.ORDER_DETAIL__ORDER, true); + } + + /** + * + * + * @generated + */ + public void setOrder(Order newOrder) + { + eSet(CompanyPackage.Literals.ORDER_DETAIL__ORDER, newOrder); + } + + /** + * + * + * @generated + */ + public Product getProduct() + { + return (Product)eGet(CompanyPackage.Literals.ORDER_DETAIL__PRODUCT, true); + } + + /** + * + * + * @generated + */ + public void setProduct(Product newProduct) + { + eSet(CompanyPackage.Literals.ORDER_DETAIL__PRODUCT, newProduct); + } + + /** + * + * + * @generated + */ + public float getPrice() + { + return (Float)eGet(CompanyPackage.Literals.ORDER_DETAIL__PRICE, true); + } + + /** + * + * + * @generated + */ + public void setPrice(float newPrice) + { + eSet(CompanyPackage.Literals.ORDER_DETAIL__PRICE, newPrice); + } + +} // OrderDetailImpl diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/OrderImpl.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/OrderImpl.java new file mode 100644 index 0000000000..7337839e2a --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/OrderImpl.java @@ -0,0 +1,85 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.impl; + +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.Order; +import org.eclipse.emf.cdo.examples.company.OrderDetail; + +import org.eclipse.emf.internal.cdo.CDOObjectImpl; + +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EClass; + +/** + * An implementation of the model object 'Order'. + *

+ * The following features are implemented: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.OrderImpl#getOrderDetails Order Details}
  • + *
+ *

+ * + * @generated + */ +public class OrderImpl extends CDOObjectImpl implements Order +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * + * + * @generated + */ + protected OrderImpl() + { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() + { + return CompanyPackage.Literals.ORDER; + } + + /** + * + * + * @generated + */ + @Override + protected int eStaticFeatureCount() + { + return 0; + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getOrderDetails() + { + return (EList)eGet(CompanyPackage.Literals.ORDER__ORDER_DETAILS, true); + } + +} // OrderImpl diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/ProductImpl.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/ProductImpl.java new file mode 100644 index 0000000000..7334e150f6 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/ProductImpl.java @@ -0,0 +1,149 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.impl; + +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.OrderDetail; +import org.eclipse.emf.cdo.examples.company.Product; +import org.eclipse.emf.cdo.examples.company.VAT; + +import org.eclipse.emf.internal.cdo.CDOObjectImpl; + +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EClass; + +/** + * An implementation of the model object 'Product'. + *

+ * The following features are implemented: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.ProductImpl#getName Name}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.ProductImpl#getOrderDetails Order Details}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.ProductImpl#getVat Vat}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.ProductImpl#getDescription Description}
  • + *
+ *

+ * + * @generated + */ +public class ProductImpl extends CDOObjectImpl implements Product +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * + * + * @generated + */ + protected ProductImpl() + { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() + { + return CompanyPackage.Literals.PRODUCT1; + } + + /** + * + * + * @generated + */ + @Override + protected int eStaticFeatureCount() + { + return 0; + } + + /** + * + * + * @generated + */ + public String getName() + { + return (String)eGet(CompanyPackage.Literals.PRODUCT1__NAME, true); + } + + /** + * + * + * @generated + */ + public void setName(String newName) + { + eSet(CompanyPackage.Literals.PRODUCT1__NAME, newName); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getOrderDetails() + { + return (EList)eGet(CompanyPackage.Literals.PRODUCT1__ORDER_DETAILS, true); + } + + /** + * + * + * @generated + */ + public VAT getVat() + { + return (VAT)eGet(CompanyPackage.Literals.PRODUCT1__VAT, true); + } + + /** + * + * + * @generated + */ + public void setVat(VAT newVat) + { + eSet(CompanyPackage.Literals.PRODUCT1__VAT, newVat); + } + + /** + * + * + * @generated + */ + public String getDescription() + { + return (String)eGet(CompanyPackage.Literals.PRODUCT1__DESCRIPTION, true); + } + + /** + * + * + * @generated + */ + public void setDescription(String newDescription) + { + eSet(CompanyPackage.Literals.PRODUCT1__DESCRIPTION, newDescription); + } + +} // ProductImpl diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/PurchaseOrderImpl.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/PurchaseOrderImpl.java new file mode 100644 index 0000000000..0ca8ed3d30 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/PurchaseOrderImpl.java @@ -0,0 +1,103 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.impl; + +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.PurchaseOrder; +import org.eclipse.emf.cdo.examples.company.Supplier; + +import org.eclipse.emf.ecore.EClass; + +import java.util.Date; + +/** + * An implementation of the model object 'Purchase Order'. + *

+ * The following features are implemented: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.PurchaseOrderImpl#getDate Date}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.PurchaseOrderImpl#getSupplier Supplier}
  • + *
+ *

+ * + * @generated + */ +public class PurchaseOrderImpl extends OrderImpl implements PurchaseOrder +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * + * + * @generated + */ + protected PurchaseOrderImpl() + { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() + { + return CompanyPackage.Literals.PURCHASE_ORDER; + } + + /** + * + * + * @generated + */ + public Date getDate() + { + return (Date)eGet(CompanyPackage.Literals.PURCHASE_ORDER__DATE, true); + } + + /** + * + * + * @generated + */ + public void setDate(Date newDate) + { + eSet(CompanyPackage.Literals.PURCHASE_ORDER__DATE, newDate); + } + + /** + * + * + * @generated + */ + public Supplier getSupplier() + { + return (Supplier)eGet(CompanyPackage.Literals.PURCHASE_ORDER__SUPPLIER, true); + } + + /** + * + * + * @generated + */ + public void setSupplier(Supplier newSupplier) + { + eSet(CompanyPackage.Literals.PURCHASE_ORDER__SUPPLIER, newSupplier); + } + +} // PurchaseOrderImpl diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/SalesOrderImpl.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/SalesOrderImpl.java new file mode 100644 index 0000000000..cf062b9119 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/SalesOrderImpl.java @@ -0,0 +1,101 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.impl; + +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.Customer; +import org.eclipse.emf.cdo.examples.company.SalesOrder; + +import org.eclipse.emf.ecore.EClass; + +/** + * An implementation of the model object 'Sales Order'. + *

+ * The following features are implemented: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.SalesOrderImpl#getId Id}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.SalesOrderImpl#getCustomer Customer}
  • + *
+ *

+ * + * @generated + */ +public class SalesOrderImpl extends OrderImpl implements SalesOrder +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * + * + * @generated + */ + protected SalesOrderImpl() + { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() + { + return CompanyPackage.Literals.SALES_ORDER; + } + + /** + * + * + * @generated + */ + public int getId() + { + return (Integer)eGet(CompanyPackage.Literals.SALES_ORDER__ID, true); + } + + /** + * + * + * @generated + */ + public void setId(int newId) + { + eSet(CompanyPackage.Literals.SALES_ORDER__ID, newId); + } + + /** + * + * + * @generated + */ + public Customer getCustomer() + { + return (Customer)eGet(CompanyPackage.Literals.SALES_ORDER__CUSTOMER, true); + } + + /** + * + * + * @generated + */ + public void setCustomer(Customer newCustomer) + { + eSet(CompanyPackage.Literals.SALES_ORDER__CUSTOMER, newCustomer); + } + +} // SalesOrderImpl diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/SupplierImpl.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/SupplierImpl.java new file mode 100644 index 0000000000..e156ffd261 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/impl/SupplierImpl.java @@ -0,0 +1,93 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.impl; + +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.PurchaseOrder; +import org.eclipse.emf.cdo.examples.company.Supplier; + +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EClass; + +/** + * An implementation of the model object 'Supplier'. + *

+ * The following features are implemented: + *

    + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.SupplierImpl#getPurchaseOrders Purchase Orders}
  • + *
  • {@link org.eclipse.emf.cdo.examples.company.impl.SupplierImpl#isPreferred Preferred}
  • + *
+ *

+ * + * @generated + */ +public class SupplierImpl extends AddressImpl implements Supplier +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * + * + * @generated + */ + protected SupplierImpl() + { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() + { + return CompanyPackage.Literals.SUPPLIER; + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + public EList getPurchaseOrders() + { + return (EList)eGet(CompanyPackage.Literals.SUPPLIER__PURCHASE_ORDERS, true); + } + + /** + * + * + * @generated + */ + public boolean isPreferred() + { + return (Boolean)eGet(CompanyPackage.Literals.SUPPLIER__PREFERRED, true); + } + + /** + * + * + * @generated + */ + public void setPreferred(boolean newPreferred) + { + eSet(CompanyPackage.Literals.SUPPLIER__PREFERRED, newPreferred); + } + +} // SupplierImpl diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/util/CompanyAdapterFactory.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/util/CompanyAdapterFactory.java new file mode 100644 index 0000000000..288fc39df2 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/util/CompanyAdapterFactory.java @@ -0,0 +1,349 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.util; + +import org.eclipse.emf.cdo.examples.company.Address; +import org.eclipse.emf.cdo.examples.company.Category; +import org.eclipse.emf.cdo.examples.company.Company; +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.Customer; +import org.eclipse.emf.cdo.examples.company.Order; +import org.eclipse.emf.cdo.examples.company.OrderAddress; +import org.eclipse.emf.cdo.examples.company.OrderDetail; +import org.eclipse.emf.cdo.examples.company.Product; +import org.eclipse.emf.cdo.examples.company.PurchaseOrder; +import org.eclipse.emf.cdo.examples.company.SalesOrder; +import org.eclipse.emf.cdo.examples.company.Supplier; + +import org.eclipse.emf.common.notify.Adapter; +import org.eclipse.emf.common.notify.Notifier; +import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl; +import org.eclipse.emf.ecore.EObject; + +/** + * The Adapter Factory for the model. It provides an adapter createXXX + * method for each class of the model. + * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage + * @generated + */ +public class CompanyAdapterFactory extends AdapterFactoryImpl +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * The cached model package. + * + * @generated + */ + protected static CompanyPackage modelPackage; + + /** + * Creates an instance of the adapter factory. + * + * @generated + */ + public CompanyAdapterFactory() + { + if (modelPackage == null) + { + modelPackage = CompanyPackage.eINSTANCE; + } + } + + /** + * Returns whether this factory is applicable for the type of the object. This implementation + * returns true if the object is either the model's package or is an instance object of the model. + * + * @return whether this factory is applicable for the type of the object. + * @generated + */ + @Override + public boolean isFactoryForType(Object object) + { + if (object == modelPackage) + { + return true; + } + if (object instanceof EObject) + { + return ((EObject)object).eClass().getEPackage() == modelPackage; + } + return false; + } + + /** + * The switch that delegates to the createXXX methods. + * + * @generated + */ + protected CompanySwitch modelSwitch = new CompanySwitch() + { + @Override + public Adapter caseAddress(Address object) + { + return createAddressAdapter(); + } + + @Override + public Adapter caseCompany(Company object) + { + return createCompanyAdapter(); + } + + @Override + public Adapter caseSupplier(Supplier object) + { + return createSupplierAdapter(); + } + + @Override + public Adapter caseCustomer(Customer object) + { + return createCustomerAdapter(); + } + + @Override + public Adapter caseOrder(Order object) + { + return createOrderAdapter(); + } + + @Override + public Adapter caseOrderDetail(OrderDetail object) + { + return createOrderDetailAdapter(); + } + + @Override + public Adapter casePurchaseOrder(PurchaseOrder object) + { + return createPurchaseOrderAdapter(); + } + + @Override + public Adapter caseSalesOrder(SalesOrder object) + { + return createSalesOrderAdapter(); + } + + @Override + public Adapter caseCategory(Category object) + { + return createCategoryAdapter(); + } + + @Override + public Adapter caseProduct(Product object) + { + return createProductAdapter(); + } + + @Override + public Adapter caseOrderAddress(OrderAddress object) + { + return createOrderAddressAdapter(); + } + + @Override + public Adapter defaultCase(EObject object) + { + return createEObjectAdapter(); + } + }; + + /** + * Creates an adapter for the target. + * + * @param target + * the object to adapt. + * @return the adapter for the target. + * @generated + */ + @Override + public Adapter createAdapter(Notifier target) + { + return modelSwitch.doSwitch((EObject)target); + } + + /** + * Creates a new adapter for an object of class '{@link org.eclipse.emf.cdo.examples.company.Address Address} + * '. This default implementation returns null so that we can easily ignore cases; it's useful + * to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see org.eclipse.emf.cdo.examples.company.Address + * @generated + */ + public Adapter createAddressAdapter() + { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link org.eclipse.emf.cdo.examples.company.Supplier + * Supplier}'. This default implementation returns null so that we can easily ignore + * cases; it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see org.eclipse.emf.cdo.examples.company.Supplier + * @generated + */ + public Adapter createSupplierAdapter() + { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link org.eclipse.emf.cdo.examples.company.PurchaseOrder + * Purchase Order}'. This default implementation returns null so that we can easily + * ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see org.eclipse.emf.cdo.examples.company.PurchaseOrder + * @generated + */ + public Adapter createPurchaseOrderAdapter() + { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link org.eclipse.emf.cdo.examples.company.OrderDetail + * Order Detail}'. This default implementation returns null so that we can easily + * ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see org.eclipse.emf.cdo.examples.company.OrderDetail + * @generated + */ + public Adapter createOrderDetailAdapter() + { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link org.eclipse.emf.cdo.examples.company.OrderAddress + * Order Address}'. This default implementation returns null so that we can easily + * ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see org.eclipse.emf.cdo.examples.company.OrderAddress + * @generated + */ + public Adapter createOrderAddressAdapter() + { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link org.eclipse.emf.cdo.examples.company.Category + * Category}'. This default implementation returns null so that we can easily ignore + * cases; it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see org.eclipse.emf.cdo.examples.company.Category + * @generated + */ + public Adapter createCategoryAdapter() + { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link org.eclipse.emf.cdo.examples.company.Product Product} + * '. This default implementation returns null so that we can easily ignore cases; it's useful + * to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see org.eclipse.emf.cdo.examples.company.Product + * @generated + */ + public Adapter createProductAdapter() + { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link org.eclipse.emf.cdo.examples.company.Company Company} + * '. This default implementation returns null so that we can easily ignore cases; it's useful + * to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see org.eclipse.emf.cdo.examples.company.Company + * @generated + */ + public Adapter createCompanyAdapter() + { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link org.eclipse.emf.cdo.examples.company.Customer + * Customer}'. This default implementation returns null so that we can easily ignore + * cases; it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see org.eclipse.emf.cdo.examples.company.Customer + * @generated + */ + public Adapter createCustomerAdapter() + { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link org.eclipse.emf.cdo.examples.company.Order Order}'. + * This default implementation returns null so that we can easily ignore cases; it's useful to + * ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see org.eclipse.emf.cdo.examples.company.Order + * @generated + */ + public Adapter createOrderAdapter() + { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link org.eclipse.emf.cdo.examples.company.SalesOrder + * Sales Order}'. This default implementation returns null so that we can easily + * ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see org.eclipse.emf.cdo.examples.company.SalesOrder + * @generated + */ + public Adapter createSalesOrderAdapter() + { + return null; + } + + /** + * Creates a new adapter for the default case. This default implementation returns null. + * + * @return the new adapter. + * @generated + */ + public Adapter createEObjectAdapter() + { + return null; + } + +} // CompanyAdapterFactory diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/util/CompanySwitch.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/util/CompanySwitch.java new file mode 100644 index 0000000000..24ddbaf315 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/util/CompanySwitch.java @@ -0,0 +1,440 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.util; + +import org.eclipse.emf.cdo.examples.company.Address; +import org.eclipse.emf.cdo.examples.company.Category; +import org.eclipse.emf.cdo.examples.company.Company; +import org.eclipse.emf.cdo.examples.company.CompanyPackage; +import org.eclipse.emf.cdo.examples.company.Customer; +import org.eclipse.emf.cdo.examples.company.Order; +import org.eclipse.emf.cdo.examples.company.OrderAddress; +import org.eclipse.emf.cdo.examples.company.OrderDetail; +import org.eclipse.emf.cdo.examples.company.Product; +import org.eclipse.emf.cdo.examples.company.PurchaseOrder; +import org.eclipse.emf.cdo.examples.company.SalesOrder; +import org.eclipse.emf.cdo.examples.company.Supplier; + +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EObject; + +import java.util.List; + +/** + * The Switch for the model's inheritance hierarchy. It supports the call + * {@link #doSwitch(EObject) doSwitch(object)} to invoke the caseXXX method for each class of the model, + * starting with the actual class of the object and proceeding up the inheritance hierarchy until a non-null result is + * returned, which is the result of the switch. + * + * @see org.eclipse.emf.cdo.examples.company.CompanyPackage + * @generated + */ +public class CompanySwitch +{ + /** + * + * + * @generated + */ + public static final String copyright = "Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Eike Stepper - initial API and implementation"; + + /** + * The cached model package + * + * @generated + */ + protected static CompanyPackage modelPackage; + + /** + * Creates an instance of the switch. + * + * @generated + */ + public CompanySwitch() + { + if (modelPackage == null) + { + modelPackage = CompanyPackage.eINSTANCE; + } + } + + /** + * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. + * + * + * @return the first non-null result returned by a caseXXX call. + * @generated + */ + public T doSwitch(EObject theEObject) + { + return doSwitch(theEObject.eClass(), theEObject); + } + + /** + * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. + * + * + * @return the first non-null result returned by a caseXXX call. + * @generated + */ + protected T doSwitch(EClass theEClass, EObject theEObject) + { + if (theEClass.eContainer() == modelPackage) + { + return doSwitch(theEClass.getClassifierID(), theEObject); + } + else + { + List eSuperTypes = theEClass.getESuperTypes(); + return eSuperTypes.isEmpty() ? defaultCase(theEObject) : doSwitch(eSuperTypes.get(0), theEObject); + } + } + + /** + * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. + * + * + * @return the first non-null result returned by a caseXXX call. + * @generated + */ + protected T doSwitch(int classifierID, EObject theEObject) + { + switch (classifierID) + { + case CompanyPackage.ADDRESS: + { + Address address = (Address)theEObject; + T result = caseAddress(address); + if (result == null) + { + result = defaultCase(theEObject); + } + return result; + } + case CompanyPackage.COMPANY: + { + Company company = (Company)theEObject; + T result = caseCompany(company); + if (result == null) + { + result = caseAddress(company); + } + if (result == null) + { + result = defaultCase(theEObject); + } + return result; + } + case CompanyPackage.SUPPLIER: + { + Supplier supplier = (Supplier)theEObject; + T result = caseSupplier(supplier); + if (result == null) + { + result = caseAddress(supplier); + } + if (result == null) + { + result = defaultCase(theEObject); + } + return result; + } + case CompanyPackage.CUSTOMER: + { + Customer customer = (Customer)theEObject; + T result = caseCustomer(customer); + if (result == null) + { + result = caseAddress(customer); + } + if (result == null) + { + result = defaultCase(theEObject); + } + return result; + } + case CompanyPackage.ORDER: + { + Order order = (Order)theEObject; + T result = caseOrder(order); + if (result == null) + { + result = defaultCase(theEObject); + } + return result; + } + case CompanyPackage.ORDER_DETAIL: + { + OrderDetail orderDetail = (OrderDetail)theEObject; + T result = caseOrderDetail(orderDetail); + if (result == null) + { + result = defaultCase(theEObject); + } + return result; + } + case CompanyPackage.PURCHASE_ORDER: + { + PurchaseOrder purchaseOrder = (PurchaseOrder)theEObject; + T result = casePurchaseOrder(purchaseOrder); + if (result == null) + { + result = caseOrder(purchaseOrder); + } + if (result == null) + { + result = defaultCase(theEObject); + } + return result; + } + case CompanyPackage.SALES_ORDER: + { + SalesOrder salesOrder = (SalesOrder)theEObject; + T result = caseSalesOrder(salesOrder); + if (result == null) + { + result = caseOrder(salesOrder); + } + if (result == null) + { + result = defaultCase(theEObject); + } + return result; + } + case CompanyPackage.CATEGORY: + { + Category category = (Category)theEObject; + T result = caseCategory(category); + if (result == null) + { + result = defaultCase(theEObject); + } + return result; + } + case CompanyPackage.PRODUCT1: + { + Product product = (Product)theEObject; + T result = caseProduct(product); + if (result == null) + { + result = defaultCase(theEObject); + } + return result; + } + case CompanyPackage.ORDER_ADDRESS: + { + OrderAddress orderAddress = (OrderAddress)theEObject; + T result = caseOrderAddress(orderAddress); + if (result == null) + { + result = caseAddress(orderAddress); + } + if (result == null) + { + result = caseOrder(orderAddress); + } + if (result == null) + { + result = caseOrderDetail(orderAddress); + } + if (result == null) + { + result = defaultCase(theEObject); + } + return result; + } + default: + return defaultCase(theEObject); + } + } + + /** + * Returns the result of interpreting the object as an instance of 'Address'. This + * implementation returns null; returning a non-null result will terminate the switch. + * + * @param object + * the target of the switch. + * @return the result of interpreting the object as an instance of 'Address'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseAddress(Address object) + { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Supplier'. This + * implementation returns null; returning a non-null result will terminate the switch. + * + * @param object + * the target of the switch. + * @return the result of interpreting the object as an instance of 'Supplier'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseSupplier(Supplier object) + { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Purchase Order'. + * This implementation returns null; returning a non-null result will terminate the switch. + * + * @param object + * the target of the switch. + * @return the result of interpreting the object as an instance of 'Purchase Order'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T casePurchaseOrder(PurchaseOrder object) + { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Order Detail'. + * This implementation returns null; returning a non-null result will terminate the switch. + * + * @param object + * the target of the switch. + * @return the result of interpreting the object as an instance of 'Order Detail'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseOrderDetail(OrderDetail object) + { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Order Address'. + * This implementation returns null; returning a non-null result will terminate the switch. + * + * @param object + * the target of the switch. + * @return the result of interpreting the object as an instance of 'Order Address'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseOrderAddress(OrderAddress object) + { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Category'. This + * implementation returns null; returning a non-null result will terminate the switch. + * + * @param object + * the target of the switch. + * @return the result of interpreting the object as an instance of 'Category'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseCategory(Category object) + { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Product'. This + * implementation returns null; returning a non-null result will terminate the switch. + * + * @param object + * the target of the switch. + * @return the result of interpreting the object as an instance of 'Product'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseProduct(Product object) + { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Company'. This + * implementation returns null; returning a non-null result will terminate the switch. + * + * @param object + * the target of the switch. + * @return the result of interpreting the object as an instance of 'Company'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseCompany(Company object) + { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Customer'. This + * implementation returns null; returning a non-null result will terminate the switch. + * + * @param object + * the target of the switch. + * @return the result of interpreting the object as an instance of 'Customer'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseCustomer(Customer object) + { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Order'. This + * implementation returns null; returning a non-null result will terminate the switch. + * + * @param object + * the target of the switch. + * @return the result of interpreting the object as an instance of 'Order'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseOrder(Order object) + { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Sales Order'. + * This implementation returns null; returning a non-null result will terminate the switch. + * + * @param object + * the target of the switch. + * @return the result of interpreting the object as an instance of 'Sales Order'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseSalesOrder(SalesOrder object) + { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'EObject'. This + * implementation returns null; returning a non-null result will terminate the switch, but this is the last case + * anyway. + * + * @param object + * the target of the switch. + * @return the result of interpreting the object as an instance of 'EObject'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) + * @generated + */ + public T defaultCase(EObject object) + { + return null; + } + +} // CompanySwitch diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/AddressValidator.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/AddressValidator.java new file mode 100644 index 0000000000..cd2f5fd232 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/AddressValidator.java @@ -0,0 +1,30 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.validation; + +/** + * A sample validator interface for {@link org.eclipse.emf.cdo.examples.company.Address}. This doesn't really do anything, + * and it's not a real EMF artifact. It was generated by the org.eclipse.emf.examples.generator.validator plug-in to + * illustrate how EMF's code generator can be extended. This can be disabled with -vmargs + * -Dorg.eclipse.emf.examples.generator.validator=false. + * + * @since 2.0 + */ +public interface AddressValidator +{ + boolean validate(); + + boolean validateName(String value); + + boolean validateStreet(String value); + + boolean validateCity(String value); +} diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/CategoryValidator.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/CategoryValidator.java new file mode 100644 index 0000000000..9821f8c985 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/CategoryValidator.java @@ -0,0 +1,35 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.validation; + +import org.eclipse.emf.cdo.examples.company.Category; +import org.eclipse.emf.cdo.examples.company.Product; + +import org.eclipse.emf.common.util.EList; + +/** + * A sample validator interface for {@link org.eclipse.emf.cdo.examples.company.Category}. This doesn't really do anything, + * and it's not a real EMF artifact. It was generated by the org.eclipse.emf.examples.generator.validator plug-in to + * illustrate how EMF's code generator can be extended. This can be disabled with -vmargs + * -Dorg.eclipse.emf.examples.generator.validator=false. + * + * @since 2.0 + */ +public interface CategoryValidator +{ + boolean validate(); + + boolean validateName(String value); + + boolean validateCategories(EList value); + + boolean validateProducts(EList value); +} diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/CompanyValidator.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/CompanyValidator.java new file mode 100644 index 0000000000..da95fe8d3d --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/CompanyValidator.java @@ -0,0 +1,42 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.validation; + +import org.eclipse.emf.cdo.examples.company.Category; +import org.eclipse.emf.cdo.examples.company.Customer; +import org.eclipse.emf.cdo.examples.company.PurchaseOrder; +import org.eclipse.emf.cdo.examples.company.SalesOrder; +import org.eclipse.emf.cdo.examples.company.Supplier; + +import org.eclipse.emf.common.util.EList; + +/** + * A sample validator interface for {@link org.eclipse.emf.cdo.examples.company.Company}. This doesn't really do anything, + * and it's not a real EMF artifact. It was generated by the org.eclipse.emf.examples.generator.validator plug-in to + * illustrate how EMF's code generator can be extended. This can be disabled with -vmargs + * -Dorg.eclipse.emf.examples.generator.validator=false. + * + * @since 2.0 + */ +public interface CompanyValidator +{ + boolean validate(); + + boolean validateCategories(EList value); + + boolean validateSuppliers(EList value); + + boolean validatePurchaseOrders(EList value); + + boolean validateCustomers(EList value); + + boolean validateSalesOrders(EList value); +} diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/CustomerValidator.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/CustomerValidator.java new file mode 100644 index 0000000000..ff66e4cd1f --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/CustomerValidator.java @@ -0,0 +1,32 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.validation; + +import org.eclipse.emf.cdo.examples.company.SalesOrder; + +import org.eclipse.emf.common.util.EList; + +/** + * A sample validator interface for {@link org.eclipse.emf.cdo.examples.company.Customer}. This doesn't really do anything, + * and it's not a real EMF artifact. It was generated by the org.eclipse.emf.examples.generator.validator plug-in to + * illustrate how EMF's code generator can be extended. This can be disabled with -vmargs + * -Dorg.eclipse.emf.examples.generator.validator=false. + * + * @since 2.0 + */ +public interface CustomerValidator +{ + boolean validate(); + + boolean validateName(String value); + + boolean validateSalesOrders(EList value); +} diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/OrderAddressValidator.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/OrderAddressValidator.java new file mode 100644 index 0000000000..d8af783358 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/OrderAddressValidator.java @@ -0,0 +1,24 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.validation; + +/** + * A sample validator interface for {@link org.eclipse.emf.cdo.examples.company.OrderAddress}. This doesn't really do + * anything, and it's not a real EMF artifact. It was generated by the org.eclipse.emf.examples.generator.validator + * plug-in to illustrate how EMF's code generator can be extended. This can be disabled with -vmargs + * -Dorg.eclipse.emf.examples.generator.validator=false. + */ +public interface OrderAddressValidator +{ + boolean validate(); + + boolean validateTestAttribute(boolean value); +} diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/OrderDetailValidator.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/OrderDetailValidator.java new file mode 100644 index 0000000000..70eba5c8fc --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/OrderDetailValidator.java @@ -0,0 +1,33 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.validation; + +import org.eclipse.emf.cdo.examples.company.Order; +import org.eclipse.emf.cdo.examples.company.Product; + +/** + * A sample validator interface for {@link org.eclipse.emf.cdo.examples.company.OrderDetail}. This doesn't really do + * anything, and it's not a real EMF artifact. It was generated by the org.eclipse.emf.examples.generator.validator + * plug-in to illustrate how EMF's code generator can be extended. This can be disabled with -vmargs + * -Dorg.eclipse.emf.examples.generator.validator=false. + * + * @since 2.0 + */ +public interface OrderDetailValidator +{ + boolean validate(); + + boolean validateOrder(Order value); + + boolean validateProduct(Product value); + + boolean validatePrice(float value); +} diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/OrderValidator.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/OrderValidator.java new file mode 100644 index 0000000000..7635d43004 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/OrderValidator.java @@ -0,0 +1,30 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.validation; + +import org.eclipse.emf.cdo.examples.company.OrderDetail; + +import org.eclipse.emf.common.util.EList; + +/** + * A sample validator interface for {@link org.eclipse.emf.cdo.examples.company.Order}. This doesn't really do anything, and + * it's not a real EMF artifact. It was generated by the org.eclipse.emf.examples.generator.validator plug-in to + * illustrate how EMF's code generator can be extended. This can be disabled with -vmargs + * -Dorg.eclipse.emf.examples.generator.validator=false. + * + * @since 2.0 + */ +public interface OrderValidator +{ + boolean validate(); + + boolean validateOrderDetails(EList value); +} diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/ProductValidator.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/ProductValidator.java new file mode 100644 index 0000000000..26b10d38d9 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/ProductValidator.java @@ -0,0 +1,35 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.validation; + +import org.eclipse.emf.cdo.examples.company.OrderDetail; +import org.eclipse.emf.cdo.examples.company.VAT; + +import org.eclipse.emf.common.util.EList; + +/** + * A sample validator interface for {@link org.eclipse.emf.cdo.examples.company.Product}. This doesn't really do anything, + * and it's not a real EMF artifact. It was generated by the org.eclipse.emf.examples.generator.validator plug-in to + * illustrate how EMF's code generator can be extended. This can be disabled with -vmargs + * -Dorg.eclipse.emf.examples.generator.validator=false. + */ +public interface ProductValidator +{ + boolean validate(); + + boolean validateName(String value); + + boolean validateOrderDetails(EList value); + + boolean validateVat(VAT value); + + boolean validateDescription(String value); +} diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/PurchaseOrderValidator.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/PurchaseOrderValidator.java new file mode 100644 index 0000000000..3f30aba69c --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/PurchaseOrderValidator.java @@ -0,0 +1,32 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.validation; + +import org.eclipse.emf.cdo.examples.company.Supplier; + +import java.util.Date; + +/** + * A sample validator interface for {@link org.eclipse.emf.cdo.examples.company.PurchaseOrder}. This doesn't really do + * anything, and it's not a real EMF artifact. It was generated by the org.eclipse.emf.examples.generator.validator + * plug-in to illustrate how EMF's code generator can be extended. This can be disabled with -vmargs + * -Dorg.eclipse.emf.examples.generator.validator=false. + * + * @since 2.0 + */ +public interface PurchaseOrderValidator +{ + boolean validate(); + + boolean validateDate(Date value); + + boolean validateSupplier(Supplier value); +} diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/SalesOrderValidator.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/SalesOrderValidator.java new file mode 100644 index 0000000000..56e0198ad9 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/SalesOrderValidator.java @@ -0,0 +1,30 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.validation; + +import org.eclipse.emf.cdo.examples.company.Customer; + +/** + * A sample validator interface for {@link org.eclipse.emf.cdo.examples.company.SalesOrder}. This doesn't really do + * anything, and it's not a real EMF artifact. It was generated by the org.eclipse.emf.examples.generator.validator + * plug-in to illustrate how EMF's code generator can be extended. This can be disabled with -vmargs + * -Dorg.eclipse.emf.examples.generator.validator=false. + * + * @since 2.0 + */ +public interface SalesOrderValidator +{ + boolean validate(); + + boolean validateId(int value); + + boolean validateCustomer(Customer value); +} diff --git a/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/SupplierValidator.java b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/SupplierValidator.java new file mode 100644 index 0000000000..0336493923 --- /dev/null +++ b/plugins/org.eclipse.emf.cdo.examples.company/src/org/eclipse/emf/cdo/examples/company/validation/SupplierValidator.java @@ -0,0 +1,34 @@ +/** + * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, 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 + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Eike Stepper - initial API and implementation + */ +package org.eclipse.emf.cdo.examples.company.validation; + +import org.eclipse.emf.cdo.examples.company.PurchaseOrder; + +import org.eclipse.emf.common.util.EList; + +/** + * A sample validator interface for {@link org.eclipse.emf.cdo.examples.company.Supplier}. This doesn't really do anything, + * and it's not a real EMF artifact. It was generated by the org.eclipse.emf.examples.generator.validator plug-in to + * illustrate how EMF's code generator can be extended. This can be disabled with -vmargs + * -Dorg.eclipse.emf.examples.generator.validator=false. + * + * @since 2.0 + */ +public interface SupplierValidator +{ + boolean validate(); + + boolean validatePurchaseOrders(EList value); + + boolean validatePreferred(boolean value); + + boolean validateName(String value); +} -- cgit v1.2.3