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

import java.util.List;

public class SequenceExpressionList extends SequenceElements {

	// Synthesized Properties
	public List<Expression> element ;
	
	// Constraints
	/*
	 * The multiplicity lower bound of the elements of a sequence expression list is given by the sum of the
	 * 	lower bounds of each of the expressions in the list.
	 */
	public void checkSequenceExpressionListLowerDerivation() {
		
	}
	
	/*
	 * The multiplicity lower bound of the elements of a sequence expression list is given by the sum of the
	 * 	lower bounds of each of the expressions in the list. If any of the expressions in the list have an
	 * 	unbounded upper bound, then the sequence expression list also has an unbounded upper bound.
	 */
	public void checkSequenceExpressionListUpperDerivation() {
		
	}
	
}

Back to the top