blob: 250861f17422c1242055d8f4bc704eefbf76d02d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 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.qvtd.codegen.qvticgmodel;
import java.util.List;
import org.eclipse.ocl.examples.codegen.cgmodel.CGAccumulator;
import org.eclipse.ocl.examples.codegen.cgmodel.CGValuedElement;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>CG Mapping Exp</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.codegen.qvticgmodel.CGMappingExp#getOwnedAccumulators <em>Owned Accumulators</em>}</li>
* <li>{@link org.eclipse.qvtd.codegen.qvticgmodel.CGMappingExp#getOwnedBody <em>Owned Body</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.codegen.qvticgmodel.QVTiCGModelPackage#getCGMappingExp()
* @model
* @generated
*/
public interface CGMappingExp extends CGValuedElement {
/**
* Returns the value of the '<em><b>Owned Accumulators</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.ocl.examples.codegen.cgmodel.CGAccumulator}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Accumulators</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Owned Accumulators</em>' containment reference list.
* @see org.eclipse.qvtd.codegen.qvticgmodel.QVTiCGModelPackage#getCGMappingExp_OwnedAccumulators()
* @model containment="true"
* @generated
*/
List<CGAccumulator> getOwnedAccumulators();
/**
* Returns the value of the '<em><b>Owned Body</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Body</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>Owned Body</em>' containment reference.
* @see #setOwnedBody(CGValuedElement)
* @see org.eclipse.qvtd.codegen.qvticgmodel.QVTiCGModelPackage#getCGMappingExp_OwnedBody()
* @model containment="true"
* @generated
*/
CGValuedElement getOwnedBody();
/**
* Sets the value of the '{@link org.eclipse.qvtd.codegen.qvticgmodel.CGMappingExp#getOwnedBody <em>Owned Body</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Owned Body</em>' containment reference.
* @see #getOwnedBody()
* @generated
*/
void setOwnedBody(CGValuedElement value);
} // CGMappingExp