blob: 3d050f1ec6989bbec77939148d9788ed8715de9e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 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:
* Adolfo Sanchez-Barbudo Herrera - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.qvtd.doc.miniocl;
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:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.doc.miniocl.Package#getOwnedClasses <em>Owned Classes</em>}</li>
* <li>{@link org.eclipse.qvtd.doc.miniocl.Package#getOwnedPackages <em>Owned Packages</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.doc.miniocl.MiniOCLPackage#getPackage()
* @model
* @generated
*/
public interface Package extends Namespace {
/**
* Returns the value of the '<em><b>Owned Classes</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.doc.miniocl.Class}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned 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>Owned Classes</em>' containment reference list.
* @see org.eclipse.qvtd.doc.miniocl.MiniOCLPackage#getPackage_OwnedClasses()
* @model containment="true"
* annotation="http://www.eclipse.org/emf/2002/GenModel get='throw new UnsupportedOperationException(); // FIXME Unimplemented http://www.eclipse.org/qvtd/doc/MiniOCL/1.0!Package!ownedClasses'"
* @generated
*/
EList<org.eclipse.qvtd.doc.miniocl.Class> getOwnedClasses();
/**
* Returns the value of the '<em><b>Owned Packages</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.doc.miniocl.Package}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned 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>Owned Packages</em>' containment reference list.
* @see org.eclipse.qvtd.doc.miniocl.MiniOCLPackage#getPackage_OwnedPackages()
* @model containment="true"
* annotation="http://www.eclipse.org/emf/2002/GenModel get='throw new UnsupportedOperationException(); // FIXME Unimplemented http://www.eclipse.org/qvtd/doc/MiniOCL/1.0!Package!ownedPackages'"
* @generated
*/
EList<Package> getOwnedPackages();
} // Package