/******************************************************************************* * Copyright (c) 2013, 2014 CEA LIST 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: * E.D.Willink(CEA LIST) - Initial API and implementation *******************************************************************************/ package org.eclipse.ocl.examples.codegen.cgmodel; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>CG Type Exp</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * A CGTypeExp is a non-constant expression that references a type. * <!-- end-model-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.CGTypeExp#getExecutorType <em>Executor Type</em>}</li> * </ul> * * @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGTypeExp() * @generated */ public interface CGTypeExp extends CGValuedElement { /** * 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#getCGTypeExp_ExecutorType() * @generated */ CGExecutorType getExecutorType(); /** * Sets the value of the '{@link org.eclipse.ocl.examples.codegen.cgmodel.CGTypeExp#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); } // CGTypeExp