Skip to main content
summaryrefslogtreecommitdiffstats
blob: 100b93ee5b4f6c306a64f279874c7f492b9a5cdb (plain) (blame)
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
package org.eclipse.papyrus.alf.syntax.expressions;

import java.util.ArrayList;
import java.util.List;

import org.eclipse.papyrus.alf.syntax.common.AssignedSource;

public class ConditionalLogicalExpression extends BinaryExpression {

	// Constraints
	
	/*
	 * A conditional logical expression has a multiplicity lower bound of 0 if the lower bound if either operand
	 * 	expression is 0 and 1 otherwise.
	 */
	public void checkConditionalLogicalExpressionLower() {
		
	}
	
	/*
	 * The operands of a conditional logical expression must have type Boolean.
	 */
	public void checkConditionalLogicalExpressionOperands() {
		
	}
	
	/*
	 * A conditional logical expression has type Boolean.
	 */
	public void checkConditionalLogicalExpressionTypeDerivation() {
		
	}
	
	/*
	 * A conditional logical expression has a multiplicity upper bound of 1.
	 */
	public void checkConditionalLogicalExpressionUpper() {
		
	}
	
	// Helper Operations
	
	/*
	 * If a name has the same assigned source after the second operand expression as before it, then that is its
	 * 	assigned source after the conditional logical expression. If a name is unassigned before the second
	 * 	operand expression, then it is considered unassigned after the conditional logical expression, even if it
	 * 	has an assigned source after the second operand expression. Otherwise its assigned source after the
	 * 	conditional logical expression is the conditional logical expression itself.
	 */
	public List<AssignedSource> updateAssignments() {
		return new ArrayList<AssignedSource>() ;
	}
	
	/*
	 * The assignments before the first operand expression of a conditional logical expression are the same as
	 * 	those before the conditional logical expression. The assignments before the second operand expression
	 * 	are the same as those after the first operand expression.(non-Javadoc)
	 */
	public boolean validateAssignments() {
		return false ;
	}
	
}

Back to the top