aboutsummaryrefslogtreecommitdiffstats
path: root/Application/org.eclipse.viatra.solver.language.model/src-gen/org/eclipse/viatra/solver/language/solverLanguage/ConditionalExpression.java
diff options
context:
space:
mode:
Diffstat (limited to 'Application/org.eclipse.viatra.solver.language.model/src-gen/org/eclipse/viatra/solver/language/solverLanguage/ConditionalExpression.java')
-rw-r--r--Application/org.eclipse.viatra.solver.language.model/src-gen/org/eclipse/viatra/solver/language/solverLanguage/ConditionalExpression.java90
1 files changed, 90 insertions, 0 deletions
diff --git a/Application/org.eclipse.viatra.solver.language.model/src-gen/org/eclipse/viatra/solver/language/solverLanguage/ConditionalExpression.java b/Application/org.eclipse.viatra.solver.language.model/src-gen/org/eclipse/viatra/solver/language/solverLanguage/ConditionalExpression.java
new file mode 100644
index 00000000..73c3cdba
--- /dev/null
+++ b/Application/org.eclipse.viatra.solver.language.model/src-gen/org/eclipse/viatra/solver/language/solverLanguage/ConditionalExpression.java
@@ -0,0 +1,90 @@
1/**
2 */
3package org.eclipse.viatra.solver.language.solverLanguage;
4
5/**
6 * <!-- begin-user-doc -->
7 * A representation of the model object '<em><b>Conditional Expression</b></em>'.
8 * <!-- end-user-doc -->
9 *
10 * <p>
11 * The following features are supported:
12 * </p>
13 * <ul>
14 * <li>{@link org.eclipse.viatra.solver.language.solverLanguage.ConditionalExpression#getCondition <em>Condition</em>}</li>
15 * <li>{@link org.eclipse.viatra.solver.language.solverLanguage.ConditionalExpression#getThen <em>Then</em>}</li>
16 * <li>{@link org.eclipse.viatra.solver.language.solverLanguage.ConditionalExpression#getElse <em>Else</em>}</li>
17 * </ul>
18 *
19 * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getConditionalExpression()
20 * @model
21 * @generated
22 */
23public interface ConditionalExpression extends Expression {
24 /**
25 * Returns the value of the '<em><b>Condition</b></em>' containment reference.
26 * <!-- begin-user-doc -->
27 * <!-- end-user-doc -->
28 * @return the value of the '<em>Condition</em>' containment reference.
29 * @see #setCondition(Expression)
30 * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getConditionalExpression_Condition()
31 * @model containment="true"
32 * @generated
33 */
34 Expression getCondition();
35
36 /**
37 * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.ConditionalExpression#getCondition <em>Condition</em>}' containment reference.
38 * <!-- begin-user-doc -->
39 * <!-- end-user-doc -->
40 * @param value the new value of the '<em>Condition</em>' containment reference.
41 * @see #getCondition()
42 * @generated
43 */
44 void setCondition(Expression value);
45
46 /**
47 * Returns the value of the '<em><b>Then</b></em>' containment reference.
48 * <!-- begin-user-doc -->
49 * <!-- end-user-doc -->
50 * @return the value of the '<em>Then</em>' containment reference.
51 * @see #setThen(Expression)
52 * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getConditionalExpression_Then()
53 * @model containment="true"
54 * @generated
55 */
56 Expression getThen();
57
58 /**
59 * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.ConditionalExpression#getThen <em>Then</em>}' containment reference.
60 * <!-- begin-user-doc -->
61 * <!-- end-user-doc -->
62 * @param value the new value of the '<em>Then</em>' containment reference.
63 * @see #getThen()
64 * @generated
65 */
66 void setThen(Expression value);
67
68 /**
69 * Returns the value of the '<em><b>Else</b></em>' containment reference.
70 * <!-- begin-user-doc -->
71 * <!-- end-user-doc -->
72 * @return the value of the '<em>Else</em>' containment reference.
73 * @see #setElse(Expression)
74 * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getConditionalExpression_Else()
75 * @model containment="true"
76 * @generated
77 */
78 Expression getElse();
79
80 /**
81 * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.ConditionalExpression#getElse <em>Else</em>}' containment reference.
82 * <!-- begin-user-doc -->
83 * <!-- end-user-doc -->
84 * @param value the new value of the '<em>Else</em>' containment reference.
85 * @see #getElse()
86 * @generated
87 */
88 void setElse(Expression value);
89
90} // ConditionalExpression