| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- /**
- * generated by Xtext 2.16.0
- */
- package be.uantwerpen.cosys.contractLang;
- import org.eclipse.emf.common.util.EList;
- /**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Response Chain1 NPattern</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * </p>
- * <ul>
- * <li>{@link be.uantwerpen.cosys.contractLang.ResponseChain1NPattern#getFirst <em>First</em>}</li>
- * <li>{@link be.uantwerpen.cosys.contractLang.ResponseChain1NPattern#getSecond <em>Second</em>}</li>
- * <li>{@link be.uantwerpen.cosys.contractLang.ResponseChain1NPattern#getTime <em>Time</em>}</li>
- * <li>{@link be.uantwerpen.cosys.contractLang.ResponseChain1NPattern#getConstraint <em>Constraint</em>}</li>
- * <li>{@link be.uantwerpen.cosys.contractLang.ResponseChain1NPattern#getStatements <em>Statements</em>}</li>
- * </ul>
- *
- * @see be.uantwerpen.cosys.contractLang.ContractLangPackage#getResponseChain1NPattern()
- * @model
- * @generated
- */
- public interface ResponseChain1NPattern extends Order
- {
- /**
- * Returns the value of the '<em><b>First</b></em>' containment reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>First</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>First</em>' containment reference.
- * @see #setFirst(MetaStatement)
- * @see be.uantwerpen.cosys.contractLang.ContractLangPackage#getResponseChain1NPattern_First()
- * @model containment="true"
- * @generated
- */
- MetaStatement getFirst();
- /**
- * Sets the value of the '{@link be.uantwerpen.cosys.contractLang.ResponseChain1NPattern#getFirst <em>First</em>}' containment reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>First</em>' containment reference.
- * @see #getFirst()
- * @generated
- */
- void setFirst(MetaStatement value);
- /**
- * Returns the value of the '<em><b>Second</b></em>' containment reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Second</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>Second</em>' containment reference.
- * @see #setSecond(MetaStatement)
- * @see be.uantwerpen.cosys.contractLang.ContractLangPackage#getResponseChain1NPattern_Second()
- * @model containment="true"
- * @generated
- */
- MetaStatement getSecond();
- /**
- * Sets the value of the '{@link be.uantwerpen.cosys.contractLang.ResponseChain1NPattern#getSecond <em>Second</em>}' containment reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Second</em>' containment reference.
- * @see #getSecond()
- * @generated
- */
- void setSecond(MetaStatement value);
- /**
- * Returns the value of the '<em><b>Time</b></em>' containment reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Time</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>Time</em>' containment reference.
- * @see #setTime(Time)
- * @see be.uantwerpen.cosys.contractLang.ContractLangPackage#getResponseChain1NPattern_Time()
- * @model containment="true"
- * @generated
- */
- Time getTime();
- /**
- * Sets the value of the '{@link be.uantwerpen.cosys.contractLang.ResponseChain1NPattern#getTime <em>Time</em>}' containment reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Time</em>' containment reference.
- * @see #getTime()
- * @generated
- */
- void setTime(Time value);
- /**
- * Returns the value of the '<em><b>Constraint</b></em>' containment reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Constraint</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>Constraint</em>' containment reference.
- * @see #setConstraint(Constraint)
- * @see be.uantwerpen.cosys.contractLang.ContractLangPackage#getResponseChain1NPattern_Constraint()
- * @model containment="true"
- * @generated
- */
- Constraint getConstraint();
- /**
- * Sets the value of the '{@link be.uantwerpen.cosys.contractLang.ResponseChain1NPattern#getConstraint <em>Constraint</em>}' containment reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Constraint</em>' containment reference.
- * @see #getConstraint()
- * @generated
- */
- void setConstraint(Constraint value);
- /**
- * Returns the value of the '<em><b>Statements</b></em>' reference list.
- * The list contents are of type {@link be.uantwerpen.cosys.contractLang.PrecStatement}.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Statements</em>' reference list isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Statements</em>' reference list.
- * @see be.uantwerpen.cosys.contractLang.ContractLangPackage#getResponseChain1NPattern_Statements()
- * @model
- * @generated
- */
- EList<PrecStatement> getStatements();
- } // ResponseChain1NPattern
|