summaryrefslogtreecommitdiffstats
path: root/rba.model.core/src/rba/core/Stereotype.java
blob: 8e53a91c1d19cd6d1e4d7a0f7157b5e3cb34eac0 (plain)
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
/**
 */
package rba.core;

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

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Stereotype</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * 
 * <!-- end-model-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link rba.core.Stereotype#getTargetModelName <em>Target Model Name</em>}</li>
 *   <li>{@link rba.core.Stereotype#getVariables <em>Variables</em>}</li>
 *   <li>{@link rba.core.Stereotype#getBodyText <em>Body Text</em>}</li>
 * </ul>
 *
 * @see rba.core.RBACorePackage#getStereotype()
 * @model
 * @generated
 */
public interface Stereotype extends PackagableElement {
	/**
	 * Returns the value of the '<em><b>Target Model Name</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * <!-- begin-model-doc -->
	 * 
	 * <!-- end-model-doc -->
	 * @return the value of the '<em>Target Model Name</em>' attribute.
	 * @see #setTargetModelName(String)
	 * @see rba.core.RBACorePackage#getStereotype_TargetModelName()
	 * @model required="true"
	 * @generated
	 */
	String getTargetModelName();

	/**
	 * Sets the value of the '{@link rba.core.Stereotype#getTargetModelName <em>Target Model Name</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Target Model Name</em>' attribute.
	 * @see #getTargetModelName()
	 * @generated
	 */
	void setTargetModelName(String value);

	/**
	 * Returns the value of the '<em><b>Variables</b></em>' containment reference list.
	 * The list contents are of type {@link rba.core.Variable}.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * <!-- begin-model-doc -->
	 * 
	 * <!-- end-model-doc -->
	 * @return the value of the '<em>Variables</em>' containment reference list.
	 * @see rba.core.RBACorePackage#getStereotype_Variables()
	 * @model containment="true"
	 * @generated
	 */
	EList<Variable> getVariables();

	/**
	 * Returns the value of the '<em><b>Body Text</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * <!-- begin-model-doc -->
	 * 
	 * <!-- end-model-doc -->
	 * @return the value of the '<em>Body Text</em>' attribute.
	 * @see #setBodyText(String)
	 * @see rba.core.RBACorePackage#getStereotype_BodyText()
	 * @model required="true"
	 * @generated
	 */
	String getBodyText();

	/**
	 * Sets the value of the '{@link rba.core.Stereotype#getBodyText <em>Body Text</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Body Text</em>' attribute.
	 * @see #getBodyText()
	 * @generated
	 */
	void setBodyText(String value);

} // Stereotype