blob: 858f0274c09e19a3009eb8b5faad498cd4f738db [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 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
*******************************************************************************/
package org.eclipse.qvtd.xtext.qvtrelationcs;
import org.eclipse.emf.common.util.EList;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.xtext.basecs.RootPackageCS;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Top Level CS</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.xtext.qvtrelationcs.TopLevelCS#getOwnedImportClauses <em>Owned Import Clauses</em>}</li>
* <li>{@link org.eclipse.qvtd.xtext.qvtrelationcs.TopLevelCS#getOwnedTransformations <em>Owned Transformations</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.xtext.qvtrelationcs.QVTrelationCSPackage#getTopLevelCS()
* @model
* @generated
*/
public interface TopLevelCS extends RootPackageCS {
/**
* Returns the value of the '<em><b>Owned Import Clauses</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.xtext.qvtrelationcs.UnitCS}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Import Clauses</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 Import Clauses</em>' containment reference list.
* @see org.eclipse.qvtd.xtext.qvtrelationcs.QVTrelationCSPackage#getTopLevelCS_OwnedImportClauses()
* @model containment="true"
* @generated
*/
@NonNull EList<UnitCS> getOwnedImportClauses();
/**
* Returns the value of the '<em><b>Owned Transformations</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.xtext.qvtrelationcs.TransformationCS}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Transformations</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 Transformations</em>' containment reference list.
* @see org.eclipse.qvtd.xtext.qvtrelationcs.QVTrelationCSPackage#getTopLevelCS_OwnedTransformations()
* @model containment="true"
* @generated
*/
@NonNull EList<TransformationCS> getOwnedTransformations();
} // TopLevelCS