blob: 3bfc4286f74f0e372f7cef59863dc192932f2444 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2019 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.CGExecutorType;
import org.eclipse.ocl.examples.codegen.cgmodel.CGVariable;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>CG Realized Variable</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.codegen.qvticgmodel.CGRealizedVariable#getExecutorType <em>Executor Type</em>}</li>
* <li>{@link org.eclipse.qvtd.codegen.qvticgmodel.CGRealizedVariable#getOwningMapping <em>Owning Mapping</em>}</li>
* <li>{@link org.eclipse.qvtd.codegen.qvticgmodel.CGRealizedVariable#getTypedModel <em>Typed Model</em>}</li>
* <li>{@link org.eclipse.qvtd.codegen.qvticgmodel.CGRealizedVariable#getOwnedParts <em>Owned Parts</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.codegen.qvticgmodel.QVTiCGModelPackage#getCGRealizedVariable()
* @model
* @generated
*/
public interface CGRealizedVariable extends CGVariable {
/**
* Returns the value of the '<em><b>Typed Model</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Typed Model</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Typed Model</em>' reference.
* @see #setTypedModel(CGTypedModel)
* @see org.eclipse.qvtd.codegen.qvticgmodel.QVTiCGModelPackage#getCGRealizedVariable_TypedModel()
* @model resolveProxies="false" required="true"
* @generated
*/
CGTypedModel getTypedModel();
/**
* Sets the value of the '{@link org.eclipse.qvtd.codegen.qvticgmodel.CGRealizedVariable#getTypedModel <em>Typed Model</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Typed Model</em>' reference.
* @see #getTypedModel()
* @generated
*/
void setTypedModel(CGTypedModel value);
/**
* Returns the value of the '<em><b>Owned Parts</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.codegen.qvticgmodel.CGRealizedVariablePart}.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.codegen.qvticgmodel.CGRealizedVariablePart#getOwningRealizedVariable <em>Owning Realized Variable</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Parts</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 Parts</em>' containment reference list.
* @see org.eclipse.qvtd.codegen.qvticgmodel.QVTiCGModelPackage#getCGRealizedVariable_OwnedParts()
* @see org.eclipse.qvtd.codegen.qvticgmodel.CGRealizedVariablePart#getOwningRealizedVariable
* @model opposite="owningRealizedVariable" containment="true"
* @generated
*/
List<CGRealizedVariablePart> getOwnedParts();
/**
* 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.qvtd.codegen.qvticgmodel.QVTiCGModelPackage#getCGRealizedVariable_ExecutorType()
* @model resolveProxies="false" required="true"
* @generated
*/
CGExecutorType getExecutorType();
/**
* Sets the value of the '{@link org.eclipse.qvtd.codegen.qvticgmodel.CGRealizedVariable#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);
/**
* Returns the value of the '<em><b>Owning Mapping</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.codegen.qvticgmodel.CGMapping#getOwnedRealizedVariables <em>Owned Realized Variables</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owning Mapping</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>Owning Mapping</em>' container reference.
* @see #setOwningMapping(CGMapping)
* @see org.eclipse.qvtd.codegen.qvticgmodel.QVTiCGModelPackage#getCGRealizedVariable_OwningMapping()
* @see org.eclipse.qvtd.codegen.qvticgmodel.CGMapping#getOwnedRealizedVariables
* @model opposite="ownedRealizedVariables" resolveProxies="false" required="true" transient="false"
* @generated
*/
CGMapping getOwningMapping();
/**
* Sets the value of the '{@link org.eclipse.qvtd.codegen.qvticgmodel.CGRealizedVariable#getOwningMapping <em>Owning Mapping</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Owning Mapping</em>' container reference.
* @see #getOwningMapping()
* @generated
*/
void setOwningMapping(CGMapping value);
} // CGRealizedVariable