blob: c7ff41ab23a19cd734ee67e91dc387faafbd75c4 [file] [log] [blame]
/**
* 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 delphi;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>program Block</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link delphi.programBlock#getUses <em>Uses</em>}</li>
* <li>{@link delphi.programBlock#getBlock <em>Block</em>}</li>
* </ul>
*
* @see delphi.DelphiPackage#getprogramBlock()
* @model
* @generated
*/
public interface programBlock extends CSTrace {
/**
* Returns the value of the '<em><b>Uses</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Uses</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>Uses</em>' containment reference.
* @see #setUses(usesClause)
* @see delphi.DelphiPackage#getprogramBlock_Uses()
* @model containment="true"
* @generated
*/
usesClause getUses();
/**
* Sets the value of the '{@link delphi.programBlock#getUses <em>Uses</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Uses</em>' containment reference.
* @see #getUses()
* @generated
*/
void setUses(usesClause value);
/**
* Returns the value of the '<em><b>Block</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Block</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>Block</em>' containment reference.
* @see #setBlock(block)
* @see delphi.DelphiPackage#getprogramBlock_Block()
* @model containment="true"
* @generated
*/
block getBlock();
/**
* Sets the value of the '{@link delphi.programBlock#getBlock <em>Block</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Block</em>' containment reference.
* @see #getBlock()
* @generated
*/
void setBlock(block value);
} // programBlock