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

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

public class FeatureReference extends SyntaxElement {

	// Synthesized Properties
	
	/*
	 * The target expression.
	 */
	public Expression  expression ;
	
	/*
	 * The name of the feature
	 */
	public NameBinding nameBinding ;

	//Derived Properties
	public ElementReference referent ;

	// Constraints
	
	/*
	 * The features referenced by a feature reference include the features of the type of the target expression
	 * 	and the association ends of any binary associations whose opposite ends are typed by the type of the
	 * 	target expression.
	 */
	public void checkFeatureReferenceReferentDerivation() {
		
	}
	
	/*
	 * The target expression of the feature reference may not be untyped, nor may it have a primitive or
	 * 	enumeration type.
	 */
	public void checkFeatureReferenceTargetType() {
		
	}
	
}

Back to the top