Skip to content

Package: Staff

Staff

Coverage

1: /**
2: * Copyright (c) 2011-2014 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * EclipseSource - Generated code
13: */
14: package org.eclipse.emf.ecp.test.university;
15:
16: import org.eclipse.emf.common.util.EList;
17: import org.eclipse.emf.ecore.EObject;
18: import org.eclipse.emf.ecore.util.FeatureMap;
19:
20: /**
21: * <!-- begin-user-doc -->
22: * A representation of the model object '<em><b>Staff</b></em>'.
23: * <!-- end-user-doc -->
24: *
25: * <p>
26: * The following features are supported:
27: * </p>
28: * <ul>
29: * <li>{@link org.eclipse.emf.ecp.test.university.Staff#getProfessors <em>Professors</em>}</li>
30: * <li>{@link org.eclipse.emf.ecp.test.university.Staff#getAssistants <em>Assistants</em>}</li>
31: * <li>{@link org.eclipse.emf.ecp.test.university.Staff#getStaff <em>Staff</em>}</li>
32: * </ul>
33: *
34: * @see org.eclipse.emf.ecp.test.university.UniversityPackage#getStaff()
35: * @model
36: * @generated
37: */
38: public interface Staff extends EObject {
39:         /**
40:          * Returns the value of the '<em><b>Professors</b></em>' containment reference list.
41:          * The list contents are of type {@link org.eclipse.emf.ecp.test.university.Professor}.
42:          * <!-- begin-user-doc -->
43:          * <p>
44:          * If the meaning of the '<em>Professors</em>' containment reference list isn't clear, there really should be more
45:          * of a description here...
46:          * </p>
47:          * <!-- end-user-doc -->
48:          *
49:          * @return the value of the '<em>Professors</em>' containment reference list.
50:          * @see org.eclipse.emf.ecp.test.university.UniversityPackage#getStaff_Professors()
51:          * @model containment="true" transient="true" volatile="true" derived="true"
52:          * extendedMetaData="group='#staff'"
53:          * @generated
54:          */
55:         EList<Professor> getProfessors();
56:
57:         /**
58:          * Returns the value of the '<em><b>Assistants</b></em>' containment reference list.
59:          * The list contents are of type {@link org.eclipse.emf.ecp.test.university.Assistant}.
60:          * <!-- begin-user-doc -->
61:          * <p>
62:          * If the meaning of the '<em>Assistants</em>' containment reference list isn't clear, there really should be more
63:          * of a description here...
64:          * </p>
65:          * <!-- end-user-doc -->
66:          *
67:          * @return the value of the '<em>Assistants</em>' containment reference list.
68:          * @see org.eclipse.emf.ecp.test.university.UniversityPackage#getStaff_Assistants()
69:          * @model containment="true" transient="true" volatile="true" derived="true"
70:          * extendedMetaData="group='#staff'"
71:          * @generated
72:          */
73:         EList<Assistant> getAssistants();
74:
75:         /**
76:          * Returns the value of the '<em><b>Staff</b></em>' attribute list.
77:          * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
78:          * <!-- begin-user-doc -->
79:          * <p>
80:          * If the meaning of the '<em>Staff</em>' attribute list isn't clear, there really should be more of a description
81:          * here...
82:          * </p>
83:          * <!-- end-user-doc -->
84:          *
85:          * @return the value of the '<em>Staff</em>' attribute list.
86:          * @see org.eclipse.emf.ecp.test.university.UniversityPackage#getStaff_Staff()
87:          * @model dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
88:          * extendedMetaData="kind='group'"
89:          * @generated
90:          */
91:         FeatureMap getStaff();
92:
93: } // Staff