Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5b4b654dd6898ab349cc8848d98e32956aaf48aa (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/**
 * <copyright>
 * </copyright>
 *
 * $Id: CollectionExpression.java,v 1.1 2008/02/27 13:21:06 sefftinge Exp $
 */
package org.eclipse.xpand3.expression;

import org.eclipse.xpand3.Identifier;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Collection Expression</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * <ul>
 *   <li>{@link org.eclipse.xpand3.expression.CollectionExpression#getClosure <em>Closure</em>}</li>
 *   <li>{@link org.eclipse.xpand3.expression.CollectionExpression#getEleName <em>Ele Name</em>}</li>
 * </ul>
 * </p>
 *
 * @see org.eclipse.xpand3.expression.ExpressionPackage#getCollectionExpression()
 * @model
 * @generated
 */
public interface CollectionExpression extends FeatureCall {
	/**
	 * Returns the value of the '<em><b>Closure</b></em>' containment reference.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Closure</em>' containment reference isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Closure</em>' containment reference.
	 * @see #setClosure(AbstractExpression)
	 * @see org.eclipse.xpand3.expression.ExpressionPackage#getCollectionExpression_Closure()
	 * @model containment="true"
	 * @generated
	 */
	AbstractExpression getClosure();

	/**
	 * Sets the value of the '{@link org.eclipse.xpand3.expression.CollectionExpression#getClosure <em>Closure</em>}' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Closure</em>' containment reference.
	 * @see #getClosure()
	 * @generated
	 */
	void setClosure(AbstractExpression value);

	/**
	 * Returns the value of the '<em><b>Ele Name</b></em>' containment reference.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Ele Name</em>' containment reference isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Ele Name</em>' containment reference.
	 * @see #setEleName(Identifier)
	 * @see org.eclipse.xpand3.expression.ExpressionPackage#getCollectionExpression_EleName()
	 * @model containment="true"
	 * @generated
	 */
	Identifier getEleName();

	/**
	 * Sets the value of the '{@link org.eclipse.xpand3.expression.CollectionExpression#getEleName <em>Ele Name</em>}' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Ele Name</em>' containment reference.
	 * @see #getEleName()
	 * @generated
	 */
	void setEleName(Identifier value);

} // CollectionExpression

Back to the top