blob: feea8d2437d9db2735c93303070979df6769471c [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2015, 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
*
* </copyright>
*/
package org.eclipse.ocl.examples.codegen.cgmodel;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>CG Is Kind Of Exp</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A CGIsKindOfExp realizes the built-in "oclIsKindOf" operation.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.CGIsKindOfExp#getExecutorType <em>Executor Type</em>}</li>
* </ul>
*
* @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGIsKindOfExp()
* @generated
*/
public interface CGIsKindOfExp extends CGCallExp {
/**
* Returns the value of the '<em><b>Executor Type</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The shared type.
* <!-- end-model-doc -->
* @return the value of the '<em>Executor Type</em>' reference.
* @see #setExecutorType(CGExecutorType)
* @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGIsKindOfExp_ExecutorType()
* @generated
*/
CGExecutorType getExecutorType();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.codegen.cgmodel.CGIsKindOfExp#getExecutorType <em>Executor Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Executor Type</em>' reference.
* @see #getExecutorType()
* @generated
*/
void setExecutorType(CGExecutorType value);
} // CGIsKindOfExp