summaryrefslogtreecommitdiff
path: root/src/traffic-incidents-service/org.genivi.booleanexpr-model/src/main/java/org/genivi/booleanexpr/DyadicExpression.java
blob: 53d2972e7639567e8a6311b9d869f3576d621eca (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/**
 * 
 * Copyright (C) 2013 TomTom International B.V.
 * 
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 * 
 */
package org.genivi.booleanexpr;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Dyadic Expression</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * This is an expression of the form 'expression' DyadicLogicalOperator 'expression', like 'expression' AND 'expression'.
 * <!-- end-model-doc -->
 *
 * <p>
 * The following features are supported:
 * <ul>
 *   <li>{@link org.genivi.booleanexpr.DyadicExpression#getLogicalOperator <em>Logical Operator</em>}</li>
 *   <li>{@link org.genivi.booleanexpr.DyadicExpression#getLeftHandTerm <em>Left Hand Term</em>}</li>
 *   <li>{@link org.genivi.booleanexpr.DyadicExpression#getRightHandTerm <em>Right Hand Term</em>}</li>
 * </ul>
 * </p>
 *
 * @see org.genivi.booleanexpr.FilterexprPackage#getDyadicExpression()
 * @model
 * @generated
 */
public interface DyadicExpression extends BooleanExpression {
  /**
	 * Returns the value of the '<em><b>Logical Operator</b></em>' attribute.
	 * The default value is <code>"AND"</code>.
	 * The literals are from the enumeration {@link org.genivi.booleanexpr.DyadicLogicalOperator}.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of the '<em>Logical Operator</em>' attribute isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @return the value of the '<em>Logical Operator</em>' attribute.
	 * @see org.genivi.booleanexpr.DyadicLogicalOperator
	 * @see #isSetLogicalOperator()
	 * @see #unsetLogicalOperator()
	 * @see #setLogicalOperator(DyadicLogicalOperator)
	 * @see org.genivi.booleanexpr.FilterexprPackage#getDyadicExpression_LogicalOperator()
	 * @model default="AND" unsettable="true" required="true"
	 * @generated
	 */
  DyadicLogicalOperator getLogicalOperator();

  /**
	 * Sets the value of the '{@link org.genivi.booleanexpr.DyadicExpression#getLogicalOperator <em>Logical Operator</em>}' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Logical Operator</em>' attribute.
	 * @see org.genivi.booleanexpr.DyadicLogicalOperator
	 * @see #isSetLogicalOperator()
	 * @see #unsetLogicalOperator()
	 * @see #getLogicalOperator()
	 * @generated
	 */
  void setLogicalOperator(DyadicLogicalOperator value);

  /**
	 * Unsets the value of the '{@link org.genivi.booleanexpr.DyadicExpression#getLogicalOperator <em>Logical Operator</em>}' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #isSetLogicalOperator()
	 * @see #getLogicalOperator()
	 * @see #setLogicalOperator(DyadicLogicalOperator)
	 * @generated
	 */
  void unsetLogicalOperator();

  /**
	 * Returns whether the value of the '{@link org.genivi.booleanexpr.DyadicExpression#getLogicalOperator <em>Logical Operator</em>}' attribute is set.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return whether the value of the '<em>Logical Operator</em>' attribute is set.
	 * @see #unsetLogicalOperator()
	 * @see #getLogicalOperator()
	 * @see #setLogicalOperator(DyadicLogicalOperator)
	 * @generated
	 */
  boolean isSetLogicalOperator();

  /**
	 * Returns the value of the '<em><b>Left Hand Term</b></em>' containment reference.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of the '<em>Left Hand Term</em>' containment reference isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @return the value of the '<em>Left Hand Term</em>' containment reference.
	 * @see #isSetLeftHandTerm()
	 * @see #unsetLeftHandTerm()
	 * @see #setLeftHandTerm(BooleanExpression)
	 * @see org.genivi.booleanexpr.FilterexprPackage#getDyadicExpression_LeftHandTerm()
	 * @model containment="true" unsettable="true" required="true"
	 * @generated
	 */
  BooleanExpression getLeftHandTerm();

  /**
	 * Sets the value of the '{@link org.genivi.booleanexpr.DyadicExpression#getLeftHandTerm <em>Left Hand Term</em>}' containment reference.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Left Hand Term</em>' containment reference.
	 * @see #isSetLeftHandTerm()
	 * @see #unsetLeftHandTerm()
	 * @see #getLeftHandTerm()
	 * @generated
	 */
  void setLeftHandTerm(BooleanExpression value);

  /**
	 * Unsets the value of the '{@link org.genivi.booleanexpr.DyadicExpression#getLeftHandTerm <em>Left Hand Term</em>}' containment reference.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #isSetLeftHandTerm()
	 * @see #getLeftHandTerm()
	 * @see #setLeftHandTerm(BooleanExpression)
	 * @generated
	 */
  void unsetLeftHandTerm();

  /**
	 * Returns whether the value of the '{@link org.genivi.booleanexpr.DyadicExpression#getLeftHandTerm <em>Left Hand Term</em>}' containment reference is set.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return whether the value of the '<em>Left Hand Term</em>' containment reference is set.
	 * @see #unsetLeftHandTerm()
	 * @see #getLeftHandTerm()
	 * @see #setLeftHandTerm(BooleanExpression)
	 * @generated
	 */
  boolean isSetLeftHandTerm();

  /**
	 * Returns the value of the '<em><b>Right Hand Term</b></em>' containment reference.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of the '<em>Right Hand Term</em>' containment reference isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @return the value of the '<em>Right Hand Term</em>' containment reference.
	 * @see #isSetRightHandTerm()
	 * @see #unsetRightHandTerm()
	 * @see #setRightHandTerm(BooleanExpression)
	 * @see org.genivi.booleanexpr.FilterexprPackage#getDyadicExpression_RightHandTerm()
	 * @model containment="true" unsettable="true" required="true"
	 * @generated
	 */
  BooleanExpression getRightHandTerm();

  /**
	 * Sets the value of the '{@link org.genivi.booleanexpr.DyadicExpression#getRightHandTerm <em>Right Hand Term</em>}' containment reference.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Right Hand Term</em>' containment reference.
	 * @see #isSetRightHandTerm()
	 * @see #unsetRightHandTerm()
	 * @see #getRightHandTerm()
	 * @generated
	 */
  void setRightHandTerm(BooleanExpression value);

  /**
	 * Unsets the value of the '{@link org.genivi.booleanexpr.DyadicExpression#getRightHandTerm <em>Right Hand Term</em>}' containment reference.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #isSetRightHandTerm()
	 * @see #getRightHandTerm()
	 * @see #setRightHandTerm(BooleanExpression)
	 * @generated
	 */
  void unsetRightHandTerm();

  /**
	 * Returns whether the value of the '{@link org.genivi.booleanexpr.DyadicExpression#getRightHandTerm <em>Right Hand Term</em>}' containment reference is set.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return whether the value of the '<em>Right Hand Term</em>' containment reference is set.
	 * @see #unsetRightHandTerm()
	 * @see #getRightHandTerm()
	 * @see #setRightHandTerm(BooleanExpression)
	 * @generated
	 */
  boolean isSetRightHandTerm();

} // DyadicExpression