Skip to content

Package: Course

Course

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.ecore.EObject;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Course</b></em>'.
21: * <!-- end-user-doc -->
22: *
23: * <p>
24: * The following features are supported:
25: * </p>
26: * <ul>
27: * <li>{@link org.eclipse.emf.ecp.test.university.Course#getId <em>Id</em>}</li>
28: * <li>{@link org.eclipse.emf.ecp.test.university.Course#getName <em>Name</em>}</li>
29: * <li>{@link org.eclipse.emf.ecp.test.university.Course#getEtcs <em>Etcs</em>}</li>
30: * </ul>
31: *
32: * @see org.eclipse.emf.ecp.test.university.UniversityPackage#getCourse()
33: * @model annotation="http://www.eclipse.org/emf/2002/Ecore constraints='UniqueItemById NameNotEmpty'"
34: * @generated
35: */
36: public interface Course extends EObject {
37:         /**
38:          * Returns the value of the '<em><b>Id</b></em>' attribute.
39:          * <!-- begin-user-doc -->
40:          * <p>
41:          * If the meaning of the '<em>Id</em>' attribute isn't clear, there really should be more of a description here...
42:          * </p>
43:          * <!-- end-user-doc -->
44:          *
45:          * @return the value of the '<em>Id</em>' attribute.
46:          * @see #setId(String)
47:          * @see org.eclipse.emf.ecp.test.university.UniversityPackage#getCourse_Id()
48:          * @model required="true"
49:          * @generated
50:          */
51:         String getId();
52:
53:         /**
54:          * Sets the value of the '{@link org.eclipse.emf.ecp.test.university.Course#getId <em>Id</em>}' attribute.
55:          * <!-- begin-user-doc -->
56:          * <!-- end-user-doc -->
57:          *
58:          * @param value the new value of the '<em>Id</em>' attribute.
59:          * @see #getId()
60:          * @generated
61:          */
62:         void setId(String value);
63:
64:         /**
65:          * Returns the value of the '<em><b>Name</b></em>' attribute.
66:          * <!-- begin-user-doc -->
67:          * <p>
68:          * If the meaning of the '<em>Name</em>' attribute isn't clear, there really should be more of a description here...
69:          * </p>
70:          * <!-- end-user-doc -->
71:          *
72:          * @return the value of the '<em>Name</em>' attribute.
73:          * @see #setName(String)
74:          * @see org.eclipse.emf.ecp.test.university.UniversityPackage#getCourse_Name()
75:          * @model required="true"
76:          * @generated
77:          */
78:         String getName();
79:
80:         /**
81:          * Sets the value of the '{@link org.eclipse.emf.ecp.test.university.Course#getName <em>Name</em>}' attribute.
82:          * <!-- begin-user-doc -->
83:          * <!-- end-user-doc -->
84:          *
85:          * @param value the new value of the '<em>Name</em>' attribute.
86:          * @see #getName()
87:          * @generated
88:          */
89:         void setName(String value);
90:
91:         /**
92:          * Returns the value of the '<em><b>Etcs</b></em>' attribute.
93:          * <!-- begin-user-doc -->
94:          * <p>
95:          * If the meaning of the '<em>Etcs</em>' attribute isn't clear, there really should be more of a description here...
96:          * </p>
97:          * <!-- end-user-doc -->
98:          *
99:          * @return the value of the '<em>Etcs</em>' attribute.
100:          * @see #setEtcs(int)
101:          * @see org.eclipse.emf.ecp.test.university.UniversityPackage#getCourse_Etcs()
102:          * @model required="true"
103:          * @generated
104:          */
105:         int getEtcs();
106:
107:         /**
108:          * Sets the value of the '{@link org.eclipse.emf.ecp.test.university.Course#getEtcs <em>Etcs</em>}' attribute.
109:          * <!-- begin-user-doc -->
110:          * <!-- end-user-doc -->
111:          *
112:          * @param value the new value of the '<em>Etcs</em>' attribute.
113:          * @see #getEtcs()
114:          * @generated
115:          */
116:         void setEtcs(int value);
117:
118: } // Course