Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5e5bba98a1d4c5189bb7712987e5398f615cf732 (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
/*****************************************************************************
 * Copyright (c) 2011 CEA LIST.
 *
 *    
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  CEA LIST - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.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