/******************************************************************************* * Copyright (c) 2013, 2015 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 Constructor Part</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.CGShadowPart#getInit <em>Init</em>}</li> * <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.CGShadowPart#getShadowExp <em>Shadow Exp</em>}</li> * <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.CGShadowPart#getExecutorPart <em>Executor Part</em>}</li> * </ul> * * @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGShadowPart() * @generated */ public interface CGShadowPart extends CGValuedElement { /** * Returns the value of the '<em><b>Init</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Init</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>Init</em>' containment reference. * @see #setInit(CGValuedElement) * @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGShadowPart_Init() * @generated */ CGValuedElement getInit(); /** * Sets the value of the '{@link org.eclipse.ocl.examples.codegen.cgmodel.CGShadowPart#getInit <em>Init</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Init</em>' containment reference. * @see #getInit() * @generated */ void setInit(CGValuedElement value); /** * Returns the value of the '<em><b>Shadow Exp</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.eclipse.ocl.examples.codegen.cgmodel.CGShadowExp#getParts <em>Parts</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Shadow Exp</em>' container reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Shadow Exp</em>' container reference. * @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGShadowPart_ShadowExp() * @see org.eclipse.ocl.examples.codegen.cgmodel.CGShadowExp#getParts * @generated */ CGShadowExp getShadowExp(); /** * Returns the value of the '<em><b>Executor Part</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 Part</em>' reference. * @see #setExecutorPart(CGExecutorShadowPart) * @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGShadowPart_ExecutorPart() * @generated */ CGExecutorShadowPart getExecutorPart(); /** * Sets the value of the '{@link org.eclipse.ocl.examples.codegen.cgmodel.CGShadowPart#getExecutorPart <em>Executor Part</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Executor Part</em>' reference. * @see #getExecutorPart() * @generated */ void setExecutorPart(CGExecutorShadowPart value); } // CGConstructorPart