blob: dc7874980191d3bc08574d0bd3e67bc56926f260 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2013, 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 v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.qvtd.pivot.qvtschedule;
import java.util.List;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Composite Partition</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.pivot.qvtschedule.CompositePartition#getOwnedMappingPartitions <em>Owned Mapping Partitions</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.pivot.qvtschedule.QVTschedulePackage#getCompositePartition()
* @model abstract="true"
* @generated
*/
public interface CompositePartition extends Partition {
/**
* Returns the value of the '<em><b>Owned Mapping Partitions</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.pivot.qvtschedule.MappingPartition}.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.pivot.qvtschedule.MappingPartition#getOwningCompositePartition <em>Owning Composite Partition</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Mapping Partition</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 Mapping Partitions</em>' containment reference list.
* @see org.eclipse.qvtd.pivot.qvtschedule.QVTschedulePackage#getCompositePartition_OwnedMappingPartitions()
* @see org.eclipse.qvtd.pivot.qvtschedule.MappingPartition#getOwningCompositePartition
* @model opposite="owningCompositePartition" containment="true"
* annotation="http://www.eclipse.org/emf/2002/GenModel get='throw new UnsupportedOperationException(); // FIXME Unimplemented http://www.eclipse.org/qvt/2017/QVTschedule!CompositePartition!ownedMappingPartitions'"
* @generated
*/
List<MappingPartition> getOwnedMappingPartitions();
} // CompositePartition