Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d842f546deade6bbf65dbdc0f585735996e98504 (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
package org.eclipse.papyrus.alf.syntax.expressions;

public class ShiftExpression extends BinaryExpression {

	// Derived Properties
	public boolean isBitStringConversion ;

	// Constraints
	
	/*
	 * BitString conversion is required if the first operand expression of a shift expression has type Integer.
	 */
	public void checkShiftExpressionIsBitStringConversionDerivation() {
		
	}
	
	/*
	 * A shift expression has a multiplicity lower bound of 0 if the lower bound if either operand expression is
	 * 0 and 1 otherwise.
	 */
	public void checkShiftExpressionLowerDerivation() {
		
	}
	
	/*
	 * The operands of a shift expression must have type BitString or Integer.
	 */
	public void checkShiftExpressionOperands() {
		
	}
	
	/*
	 * A shift expression has type BitString.
	 */
	public void checkShiftExpressionTypeDerivation() {
		
	}
	
	/*
	 * A shift expression has a multiplicity upper bound of 1.
	 */
	public void checkShiftExpressionUpperDerivation() {
		
	}
	
	
}

Back to the top