| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**
- * generated by Xtext 2.16.0
- */
- package be.uantwerpen.cosys.contractLang;
- /**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>String Value</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * </p>
- * <ul>
- * <li>{@link be.uantwerpen.cosys.contractLang.StringValue#getVal <em>Val</em>}</li>
- * </ul>
- *
- * @see be.uantwerpen.cosys.contractLang.ContractLangPackage#getStringValue()
- * @model
- * @generated
- */
- public interface StringValue extends Expression, Value
- {
- /**
- * Returns the value of the '<em><b>Val</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Val</em>' attribute isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Val</em>' attribute.
- * @see #setVal(String)
- * @see be.uantwerpen.cosys.contractLang.ContractLangPackage#getStringValue_Val()
- * @model
- * @generated
- */
- String getVal();
- /**
- * Sets the value of the '{@link be.uantwerpen.cosys.contractLang.StringValue#getVal <em>Val</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Val</em>' attribute.
- * @see #getVal()
- * @generated
- */
- void setVal(String value);
- } // StringValue
|