source: branches/xtext-MDT/org.modelica.xtext/src-gen/org/modelica/xtext/modelicaBase/WhileClause.java @ 540

Last change on this file since 540 was 540, checked in by nasko, 15 years ago

Added subfolders/files of org.modelica.xtext

File size: 2.2 KB
Line 
1/**
2 * <copyright>
3 * </copyright>
4 *
5 */
6package org.modelica.xtext.modelicaBase;
7
8import org.eclipse.emf.common.util.EList;
9
10/**
11 * <!-- begin-user-doc -->
12 * A representation of the model object '<em><b>While Clause</b></em>'.
13 * <!-- end-user-doc -->
14 *
15 * <p>
16 * The following features are supported:
17 * <ul>
18 *   <li>{@link org.modelica.xtext.modelicaBase.WhileClause#getCondition <em>Condition</em>}</li>
19 *   <li>{@link org.modelica.xtext.modelicaBase.WhileClause#getAlgorithmClauses <em>Algorithm Clauses</em>}</li>
20 * </ul>
21 * </p>
22 *
23 * @see org.modelica.xtext.modelicaBase.ModelicaBasePackage#getWhileClause()
24 * @model
25 * @generated
26 */
27public interface WhileClause extends algorithm
28{
29  /**
30   * Returns the value of the '<em><b>Condition</b></em>' attribute.
31   * <!-- begin-user-doc -->
32   * <p>
33   * If the meaning of the '<em>Condition</em>' attribute isn't clear,
34   * there really should be more of a description here...
35   * </p>
36   * <!-- end-user-doc -->
37   * @return the value of the '<em>Condition</em>' attribute.
38   * @see #setCondition(String)
39   * @see org.modelica.xtext.modelicaBase.ModelicaBasePackage#getWhileClause_Condition()
40   * @model
41   * @generated
42   */
43  String getCondition();
44
45  /**
46   * Sets the value of the '{@link org.modelica.xtext.modelicaBase.WhileClause#getCondition <em>Condition</em>}' attribute.
47   * <!-- begin-user-doc -->
48   * <!-- end-user-doc -->
49   * @param value the new value of the '<em>Condition</em>' attribute.
50   * @see #getCondition()
51   * @generated
52   */
53  void setCondition(String value);
54
55  /**
56   * Returns the value of the '<em><b>Algorithm Clauses</b></em>' containment reference list.
57   * The list contents are of type {@link org.modelica.xtext.modelicaBase.algorithm}.
58   * <!-- begin-user-doc -->
59   * <p>
60   * If the meaning of the '<em>Algorithm Clauses</em>' containment reference list isn't clear,
61   * there really should be more of a description here...
62   * </p>
63   * <!-- end-user-doc -->
64   * @return the value of the '<em>Algorithm Clauses</em>' containment reference list.
65   * @see org.modelica.xtext.modelicaBase.ModelicaBasePackage#getWhileClause_AlgorithmClauses()
66   * @model containment="true"
67   * @generated
68   */
69  EList<algorithm> getAlgorithmClauses();
70
71} // WhileClause
Note: See TracBrowser for help on using the repository browser.