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

public class FeatureInvocationExpression extends InvocationExpression {

	// Synthesized Properties
	public FeatureReference target ;

	// Constraints
	
	/*
	 * An alternative constructor invocation may only occur in an expression statement as the first statement in
	 * 	the definition for the method of a constructor operation.
	 */
	public void checkFeatureInvocationExpressionAlternativeConstructor() {
		
	}
	
	/*
	 * If a feature invocation expression has an explicit target, then that is its feature. Otherwise, it is an
	 * 	alternative constructor call with its feature determined implicitly.
	 */
	public void checkFeatureInvocationExpressionFeatureDerivation() {
		
	}
	
	/*
	 * If there is no target feature expression, then the implicit feature with the same name as the target type
	 * 	must be a constructor.
	 */
	public void checkFeatureInvocationExpressionImplicitAlternativeConstructor() {
		
	}
	
	/*
	 * If a feature invocation expression is an implicit object destruction, it has no referent. Otherwise, its
	 * 	referent is the referent of its feature.
	 */
	public void checkFeatureInvocationExpressionReferentDerivation() {
		
	}
	
	/*
	 * If a feature invocation expression is not an implicit destructor call, then it must be possible to determine
	 * 	a single valid referent for it according to the overloading resolution rules.
	 */
	public void checkFeatureInvocationExpressionReferentExists() {
		
	}
	
}

Back to the top