/******************************************************************************* * Copyright (c) 2013, 2014 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; import java.util.List; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>CG Package</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.CGPackage#getClasses <em>Classes</em>}</li> * <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.CGPackage#getPackages <em>Packages</em>}</li> * <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.CGPackage#getContainingPackage <em>Containing Package</em>}</li> * </ul> * * @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGPackage() * @generated */ public interface CGPackage extends CGNamedElement { /** * Returns the value of the '<em><b>Classes</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.ocl.examples.codegen.cgmodel.CGClass}. * It is bidirectional and its opposite is '{@link org.eclipse.ocl.examples.codegen.cgmodel.CGClass#getContainingPackage <em>Containing Package</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Classes</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>Classes</em>' containment reference list. * @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGPackage_Classes() * @see org.eclipse.ocl.examples.codegen.cgmodel.CGClass#getContainingPackage * @generated */ List<CGClass> getClasses(); /** * Returns the value of the '<em><b>Packages</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.ocl.examples.codegen.cgmodel.CGPackage}. * It is bidirectional and its opposite is '{@link org.eclipse.ocl.examples.codegen.cgmodel.CGPackage#getContainingPackage <em>Containing Package</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Packages</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>Packages</em>' containment reference list. * @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGPackage_Packages() * @see org.eclipse.ocl.examples.codegen.cgmodel.CGPackage#getContainingPackage * @generated */ List<CGPackage> getPackages(); /** * Returns the value of the '<em><b>Containing Package</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.eclipse.ocl.examples.codegen.cgmodel.CGPackage#getPackages <em>Packages</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Containing Package</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>Containing Package</em>' container reference. * @see #setContainingPackage(CGPackage) * @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGPackage_ContainingPackage() * @see org.eclipse.ocl.examples.codegen.cgmodel.CGPackage#getPackages * @generated */ CGPackage getContainingPackage(); /** * Sets the value of the '{@link org.eclipse.ocl.examples.codegen.cgmodel.CGPackage#getContainingPackage <em>Containing Package</em>}' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Containing Package</em>' container reference. * @see #getContainingPackage() * @generated */ void setContainingPackage(CGPackage value); } // CGPackage