blob: 96bcae1352506ae42f718c6f21ff7d59270def07 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.examples.xtext2lpg.XBNF;
import org.eclipse.emf.ecore.EClassifier;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Action Assignment</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.ocl.examples.xtext2lpg.XBNF.ActionAssignment#getType <em>Type</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.ocl.examples.xtext2lpg.XBNF.XBNFPackage#getActionAssignment()
* @model
* @generated
*/
public interface ActionAssignment extends Assignment {
/**
* Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' reference.
* @see #setType(EClassifier)
* @see org.eclipse.ocl.examples.xtext2lpg.XBNF.XBNFPackage#getActionAssignment_Type()
* @model required="true"
* @generated
*/
EClassifier getType();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.xtext2lpg.XBNF.ActionAssignment#getType <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' reference.
* @see #getType()
* @generated
*/
void setType(EClassifier value);
} // ActionAssignment