/** * <copyright> * * Copyright (c) 2015 Willink Transformations 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 - Initial API and implementation * * </copyright> */ package org.eclipse.ocl.examples.codegen.cgmodel; import java.util.List; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>CG Map Exp</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.CGMapExp#getParts <em>Parts</em>}</li> * </ul> * * @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGMapExp() * @generated */ public interface CGMapExp 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.CGMapPart}. * It is bidirectional and its opposite is '{@link org.eclipse.ocl.examples.codegen.cgmodel.CGMapPart#getMapExp <em>Map 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#getCGMapExp_Parts() * @see org.eclipse.ocl.examples.codegen.cgmodel.CGMapPart#getMapExp * @generated */ List<CGMapPart> getParts(); } // CGMapExp