blob: f089b0ccff2a154d36b7be4fea3c8b28c81d6f9e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2018 CEA LIST 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(CEA LIST) - Initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.examples.codegen.cgmodel;
import java.util.List;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>CG Tuple Exp</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.CGTupleExp#getParts <em>Parts</em>}</li>
* </ul>
*
* @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGTupleExp()
* @generated
*/
public interface CGTupleExp extends CGValuedElement {
/**
* Returns the value of the '<em><b>Parts</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.ocl.examples.codegen.cgmodel.CGTuplePart}.
* It is bidirectional and its opposite is '{@link org.eclipse.ocl.examples.codegen.cgmodel.CGTuplePart#getTupleExp <em>Tuple Exp</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Parts</em>' containment reference list.
* @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGTupleExp_Parts()
* @see org.eclipse.ocl.examples.codegen.cgmodel.CGTuplePart#getTupleExp
* @generated
*/
List<CGTuplePart> getParts();
} // CGTupleExp