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

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

public class ClassificationExpression extends UnaryExpression {

	// Synthesized Properties
	public QualifiedName typeName ; 
	
	// Derived Properties
	public boolean isDirect ;
	public ElementReference referent ;

	//Constraints
	/*
	 * A classification expression is direct if its operator is "hastype".
	 */
	public void checkClassificationExpressionIsDirectDerivation() {
		
	}
	
	/*
	 * A classification expression has a multiplicity lower bound that is the same as the lower bound of its
	 * 	operand expression.
	 */
	public void checkClassificationExpressionLowerDerivation() {
		
	}
	
	/*
	 * The operand expression of a classification expression must have a multiplicity upper bound of 1.
	 */
	public void checkClassificationExpressionOperand() {
		
	}
	
	/*
	 * The referent of a classification expression is the classifier to which the type name resolves.
	 */
	public void checkClassificationExpressionReferentDerivation() {
		
	}
	
	/*
	 * A classification expression has type Boolean.
	 */
	public void checkClassificationExpressionTypeDerivation() {
		
	}
	
	/*
	 * The type name in a classification expression must resolve to a classifier.
	 */
	public void checkClassificationExpressionTypeName() {
		
	}
	
	/*
	 * A classification expression has a multiplicity upper bound of 1.
	 */
	public void checkClassificationExpressionUpperDerivation() {
		
	}
	
}

Back to the top