blob: 26c259d078ab8a681abac547a4c7624f09a532f3 [file] [log] [blame]
/**
* <copyright>
* Copyright (c) 2008, 2018 Open Canarias S.L. 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:
* A. Sanchez-Barbudo - initial API and implementation
* </copyright>
*
* $Id: Typedef.java,v 1.2 2009/01/25 23:10:43 radvorak Exp $
*/
package org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.ocl.ecore.OCLExpression;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Typedef</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL.Typedef#getBase <em>Base</em>}</li>
* <li>{@link org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL.Typedef#getCondition <em>Condition</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL.ImperativeOCLPackage#getTypedef()
* @model
* @generated
*/
public interface Typedef extends EClass {
/**
* Returns the value of the '<em><b>Base</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Base</em>' reference.
* @see #setBase(EClassifier)
* @see org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL.ImperativeOCLPackage#getTypedef_Base()
* @model required="true"
* @generated
*/
EClassifier getBase();
/**
* Sets the value of the '{@link org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL.Typedef#getBase <em>Base</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base</em>' reference.
* @see #getBase()
* @generated
*/
void setBase(EClassifier value);
/**
* Returns the value of the '<em><b>Condition</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Condition</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>Condition</em>' containment reference.
* @see #setCondition(OCLExpression)
* @see org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL.ImperativeOCLPackage#getTypedef_Condition()
* @model containment="true"
* @generated
*/
OCLExpression getCondition();
/**
* Sets the value of the '{@link org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL.Typedef#getCondition <em>Condition</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Condition</em>' containment reference.
* @see #getCondition()
* @generated
*/
void setCondition(OCLExpression value);
} // Typedef