blob: d4660b906c86d02703aaa8e2dbf88d948bef3169 [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 astm;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Definition</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link astm.Definition#getIdentifierName <em>Identifier Name</em>}</li>
* <li>{@link astm.Definition#getDefinitionType <em>Definition Type</em>}</li>
* </ul>
*
* @see astm.AstmPackage#getDefinition()
* @model abstract="true"
* @generated
*/
public interface Definition extends DeclarationOrDefinition {
/**
* Returns the value of the '<em><b>Identifier Name</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Identifier Name</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>Identifier Name</em>' containment reference.
* @see #setIdentifierName(Name)
* @see astm.AstmPackage#getDefinition_IdentifierName()
* @model containment="true"
* annotation="http://www.eclipse.org/emf/2002/GenModel get='throw new UnsupportedOperationException(); // FIXME Unimplemented http://cs2as/tests/delphi/AS/1.0!Definition!identifierName'"
* @generated
*/
Name getIdentifierName();
/**
* Sets the value of the '{@link astm.Definition#getIdentifierName <em>Identifier Name</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Identifier Name</em>' containment reference.
* @see #getIdentifierName()
* @generated
*/
void setIdentifierName(Name value);
/**
* Returns the value of the '<em><b>Definition Type</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Definition Type</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>Definition Type</em>' containment reference.
* @see #setDefinitionType(TypeReference)
* @see astm.AstmPackage#getDefinition_DefinitionType()
* @model containment="true"
* annotation="http://www.eclipse.org/emf/2002/GenModel get='throw new UnsupportedOperationException(); // FIXME Unimplemented http://cs2as/tests/delphi/AS/1.0!Definition!definitionType'"
* @generated
*/
TypeReference getDefinitionType();
/**
* Sets the value of the '{@link astm.Definition#getDefinitionType <em>Definition Type</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Definition Type</em>' containment reference.
* @see #getDefinitionType()
* @generated
*/
void setDefinitionType(TypeReference value);
} // Definition