Skip to content

Package: Person

Person

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:
19: /**
20: * <!-- begin-user-doc -->
21: * A representation of the model object '<em><b>Person</b></em>'.
22: * <!-- end-user-doc -->
23: *
24: * <p>
25: * The following features are supported:
26: * </p>
27: * <ul>
28: * <li>{@link org.eclipse.emf.ecp.test.university.Person#getName <em>Name</em>}</li>
29: * <li>{@link org.eclipse.emf.ecp.test.university.Person#getAddresses <em>Addresses</em>}</li>
30: * </ul>
31: *
32: * @see org.eclipse.emf.ecp.test.university.UniversityPackage#getPerson()
33: * @model interface="true" abstract="true"
34: * @generated
35: */
36: public interface Person extends EObject {
37:
38:         /**
39:          * Returns the value of the '<em><b>Name</b></em>' attribute.
40:          * <!-- begin-user-doc -->
41:          * <p>
42:          * If the meaning of the '<em>Name</em>' attribute isn't clear, there really should be more of a description here...
43:          * </p>
44:          * <!-- end-user-doc -->
45:          *
46:          * @return the value of the '<em>Name</em>' attribute.
47:          * @see #setName(String)
48:          * @see org.eclipse.emf.ecp.test.university.UniversityPackage#getPerson_Name()
49:          * @model
50:          * @generated
51:          */
52:         String getName();
53:
54:         /**
55:          * Sets the value of the '{@link org.eclipse.emf.ecp.test.university.Person#getName <em>Name</em>}' attribute.
56:          * <!-- begin-user-doc -->
57:          * <!-- end-user-doc -->
58:          *
59:          * @param value the new value of the '<em>Name</em>' attribute.
60:          * @see #getName()
61:          * @generated
62:          */
63:         void setName(String value);
64:
65:         /**
66:          * Returns the value of the '<em><b>Addresses</b></em>' containment reference list.
67:          * The list contents are of type {@link org.eclipse.emf.ecp.test.university.Address}.
68:          * <!-- begin-user-doc -->
69:          * <p>
70:          * If the meaning of the '<em>Addresses</em>' containment reference list isn't clear,
71:          * there really should be more of a description here...
72:          * </p>
73:          * <!-- end-user-doc -->
74:          *
75:          * @return the value of the '<em>Addresses</em>' containment reference list.
76:          * @see org.eclipse.emf.ecp.test.university.UniversityPackage#getPerson_Addresses()
77:          * @model containment="true"
78:          * @generated
79:          */
80:         EList<Address> getAddresses();
81: } // Person