blob: 1077b28f8f5962a2768f2f3da73fab78286ae49e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2018 Borland Software Corporation 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:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package simpleuml;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Package</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link simpleuml.Package#getOwnedElements <em>Owned Elements</em>}</li>
* </ul>
* </p>
*
* @see simpleuml.SimpleumlPackage#getPackage()
* @model
* @generated
*/
public interface Package extends Classifier, Packageable {
/**
* Returns the value of the '<em><b>Owned Elements</b></em>' containment reference list.
* The list contents are of type {@link simpleuml.Packageable}.
* It is bidirectional and its opposite is '{@link simpleuml.Packageable#getOwner <em>Owner</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Elements</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 Elements</em>' containment reference list.
* @see simpleuml.SimpleumlPackage#getPackage_OwnedElements()
* @see simpleuml.Packageable#getOwner
* @model opposite="owner" containment="true"
* @generated
*/
EList<Packageable> getOwnedElements();
} // Package