Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fa1347687db8fa3f202e1b973010ada7e8a79f36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/**
 * <copyright>
 * </copyright>
 *
 * $Id$
 */
package org.eclipse.emf.cdo.tests.model1;

import org.eclipse.emf.cdo.CDOObject;

import org.eclipse.emf.common.util.EList;

/**
 * <!-- begin-user-doc --> A representation of the model object '<em><b>Company</b></em>'.
 * <!-- end-user-doc -->
 * <p>
 * The following features are supported:
 * <ul>
 * <li>{@link org.eclipse.emf.cdo.tests.model1.Company#getCategories <em>Categories</em>}</li>
 * <li>{@link org.eclipse.emf.cdo.tests.model1.Company#getSuppliers <em>Suppliers</em>}</li>
 * <li>{@link org.eclipse.emf.cdo.tests.model1.Company#getPurchaseOrders <em>Purchase Orders</em>}</li>
 * <li>{@link org.eclipse.emf.cdo.tests.model1.Company#getCustomers <em>Customers</em>}</li>
 * <li>{@link org.eclipse.emf.cdo.tests.model1.Company#getSalesOrders <em>Sales Orders</em>}</li>
 * </ul>
 * </p>
 * 
 * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getCompany()
 * @model
 * @extends CDOObject
 * @generated
 */
public interface Company extends CDOObject
{
  /**
   * Returns the value of the '<em><b>Categories</b></em>' containment
   * reference list. The list contents are of type
   * {@link org.eclipse.emf.cdo.tests.model1.Category}. <!-- begin-user-doc -->
   * <p>
   * If the meaning of the '<em>Categories</em>' containment reference list
   * isn't clear, there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
   * 
   * @return the value of the '<em>Categories</em>' containment reference
   *         list.
   * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getCompany_Categories()
   * @model type="org.eclipse.emf.cdo.tests.model1.Category" containment="true"
   * @generated
   */
  EList getCategories();

  /**
   * Returns the value of the '<em><b>Suppliers</b></em>' containment
   * reference list. The list contents are of type
   * {@link org.eclipse.emf.cdo.tests.model1.Supplier}. <!-- begin-user-doc -->
   * <p>
   * If the meaning of the '<em>Suppliers</em>' containment reference list
   * isn't clear, there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
   * 
   * @return the value of the '<em>Suppliers</em>' containment reference
   *         list.
   * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getCompany_Suppliers()
   * @model type="org.eclipse.emf.cdo.tests.model1.Supplier" containment="true"
   * @generated
   */
  EList getSuppliers();

  /**
   * Returns the value of the '<em><b>Purchase Orders</b></em>' containment
   * reference list. The list contents are of type
   * {@link org.eclipse.emf.cdo.tests.model1.PurchaseOrder}. <!--
   * begin-user-doc -->
   * <p>
   * If the meaning of the '<em>Purchase Orders</em>' containment reference
   * list isn't clear, there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
   * 
   * @return the value of the '<em>Purchase Orders</em>' containment
   *         reference list.
   * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getCompany_PurchaseOrders()
   * @model type="org.eclipse.emf.cdo.tests.model1.PurchaseOrder"
   *        containment="true"
   * @generated
   */
  EList getPurchaseOrders();

  /**
   * Returns the value of the '<em><b>Customers</b></em>' containment
   * reference list. The list contents are of type
   * {@link org.eclipse.emf.cdo.tests.model1.Customer}. <!-- begin-user-doc -->
   * <p>
   * If the meaning of the '<em>Customers</em>' containment reference list
   * isn't clear, there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
   * 
   * @return the value of the '<em>Customers</em>' containment reference
   *         list.
   * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getCompany_Customers()
   * @model type="org.eclipse.emf.cdo.tests.model1.Customer" containment="true"
   * @generated
   */
  EList getCustomers();

  /**
   * Returns the value of the '<em><b>Sales Orders</b></em>' containment
   * reference list. The list contents are of type
   * {@link org.eclipse.emf.cdo.tests.model1.SalesOrder}. <!-- begin-user-doc
   * -->
   * <p>
   * If the meaning of the '<em>Sales Orders</em>' containment reference
   * list isn't clear, there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
   * 
   * @return the value of the '<em>Sales Orders</em>' containment reference
   *         list.
   * @see org.eclipse.emf.cdo.tests.model1.Model1Package#getCompany_SalesOrders()
   * @model type="org.eclipse.emf.cdo.tests.model1.SalesOrder"
   *        containment="true"
   * @generated
   */
  EList getSalesOrders();

} // Company

Back to the top