blob: 94ead7a46767ccde4581e1af643cf60954b51646 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 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.pivot;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Type Exp</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.pivot.TypeExp#getReferredType <em>Referred Type</em>}</li>
* </ul>
*
* @see org.eclipse.ocl.pivot.PivotPackage#getTypeExp()
* @generated
*/
public interface TypeExp
extends OCLExpression, ReferringElement {
/**
* Returns the value of the '<em><b>Referred Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Referred 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>Referred Type</em>' reference.
* @see #setReferredType(Type)
* @see org.eclipse.ocl.pivot.PivotPackage#getTypeExp_ReferredType()
* @generated
*/
Type getReferredType();
/**
* Sets the value of the '{@link org.eclipse.ocl.pivot.TypeExp#getReferredType <em>Referred Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Referred Type</em>' reference.
* @see #getReferredType()
* @generated
*/
void setReferredType(Type value);
} // TypeExp