| /** |
| * Copyright (c) 2016 Willink Transformations, Univesity of York and others. |
| * All rights reserved. This program and the accompanying materials |
| * are made available under the terms of the Eclipse Public License v1.0 |
| * which accompanies this distribution, and is available at |
| * http://www.eclipse.org/legal/epl-v10.html |
| * |
| * Contributors: |
| * Adolfo Sanchez-Barbudo Herrera - initial API and implementation |
| */ |
| package astm; |
| |
| |
| /** |
| * <!-- begin-user-doc --> |
| * A representation of the model object '<em><b>Data Definition</b></em>'. |
| * <!-- end-user-doc --> |
| * |
| * <p> |
| * The following features are supported: |
| * </p> |
| * <ul> |
| * <li>{@link astm.DataDefinition#isIsMutable <em>Is Mutable</em>}</li> |
| * <li>{@link astm.DataDefinition#getInitialValue <em>Initial Value</em>}</li> |
| * </ul> |
| * |
| * @see astm.AstmPackage#getDataDefinition() |
| * @model abstract="true" |
| * @generated |
| */ |
| public interface DataDefinition extends Definition { |
| /** |
| * Returns the value of the '<em><b>Is Mutable</b></em>' attribute. |
| * <!-- begin-user-doc --> |
| * <p> |
| * If the meaning of the '<em>Is Mutable</em>' attribute isn't clear, |
| * there really should be more of a description here... |
| * </p> |
| * <!-- end-user-doc --> |
| * @return the value of the '<em>Is Mutable</em>' attribute. |
| * @see #setIsMutable(boolean) |
| * @see astm.AstmPackage#getDataDefinition_IsMutable() |
| * @model annotation="http://www.eclipse.org/emf/2002/GenModel get='throw new UnsupportedOperationException(); // FIXME Unimplemented http://cs2as/tests/delphi/AS/1.0!DataDefinition!isMutable'" |
| * @generated |
| */ |
| boolean isIsMutable(); |
| |
| /** |
| * Sets the value of the '{@link astm.DataDefinition#isIsMutable <em>Is Mutable</em>}' attribute. |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @param value the new value of the '<em>Is Mutable</em>' attribute. |
| * @see #isIsMutable() |
| * @generated |
| */ |
| void setIsMutable(boolean value); |
| |
| /** |
| * Returns the value of the '<em><b>Initial Value</b></em>' containment reference. |
| * <!-- begin-user-doc --> |
| * <p> |
| * If the meaning of the '<em>Initial Value</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>Initial Value</em>' containment reference. |
| * @see #setInitialValue(Expression) |
| * @see astm.AstmPackage#getDataDefinition_InitialValue() |
| * @model containment="true" |
| * annotation="http://www.eclipse.org/emf/2002/GenModel get='throw new UnsupportedOperationException(); // FIXME Unimplemented http://cs2as/tests/delphi/AS/1.0!DataDefinition!initialValue'" |
| * @generated |
| */ |
| Expression getInitialValue(); |
| |
| /** |
| * Sets the value of the '{@link astm.DataDefinition#getInitialValue <em>Initial Value</em>}' containment reference. |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @param value the new value of the '<em>Initial Value</em>' containment reference. |
| * @see #getInitialValue() |
| * @generated |
| */ |
| void setInitialValue(Expression value); |
| |
| } // DataDefinition |