blob: 1a072a1f64b0582afbad7c31067702335712f107 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2014 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.pivot.qvtcorebase;
import org.eclipse.emf.common.util.EList;
import org.eclipse.jdt.annotation.NonNull;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Bottom Pattern</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.pivot.qvtcorebase.BottomPattern#getArea <em>Area</em>}</li>
* <li>{@link org.eclipse.qvtd.pivot.qvtcorebase.BottomPattern#getAssignment <em>Assignment</em>}</li>
* <li>{@link org.eclipse.qvtd.pivot.qvtcorebase.BottomPattern#getEnforcementOperation <em>Enforcement Operation</em>}</li>
* <li>{@link org.eclipse.qvtd.pivot.qvtcorebase.BottomPattern#getRealizedVariable <em>Realized Variable</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.pivot.qvtcorebase.QVTcoreBasePackage#getBottomPattern()
* @model
* @generated
*/
public interface BottomPattern extends CorePattern {
/**
* Returns the value of the '<em><b>Area</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.pivot.qvtcorebase.Area#getBottomPattern <em>Bottom Pattern</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Area</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>Area</em>' container reference.
* @see #setArea(Area)
* @see org.eclipse.qvtd.pivot.qvtcorebase.QVTcoreBasePackage#getBottomPattern_Area()
* @see org.eclipse.qvtd.pivot.qvtcorebase.Area#getBottomPattern
* @model opposite="bottomPattern" required="true"
* @generated
*/
@Override
Area getArea();
/**
* Sets the value of the '{@link org.eclipse.qvtd.pivot.qvtcorebase.BottomPattern#getArea <em>Area</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Area</em>' container reference.
* @see #getArea()
* @generated
*/
void setArea(Area value);
/**
* Returns the value of the '<em><b>Assignment</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.pivot.qvtcorebase.Assignment}.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.pivot.qvtcorebase.Assignment#getBottomPattern <em>Bottom Pattern</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Assignment</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>Assignment</em>' containment reference list.
* @see org.eclipse.qvtd.pivot.qvtcorebase.QVTcoreBasePackage#getBottomPattern_Assignment()
* @see org.eclipse.qvtd.pivot.qvtcorebase.Assignment#getBottomPattern
* @model opposite="bottomPattern" containment="true" ordered="false"
* @generated
*/
@NonNull EList<Assignment> getAssignment();
/**
* Returns the value of the '<em><b>Enforcement Operation</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.pivot.qvtcorebase.EnforcementOperation}.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.pivot.qvtcorebase.EnforcementOperation#getBottomPattern <em>Bottom Pattern</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Enforcement Operation</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>Enforcement Operation</em>' containment reference list.
* @see org.eclipse.qvtd.pivot.qvtcorebase.QVTcoreBasePackage#getBottomPattern_EnforcementOperation()
* @see org.eclipse.qvtd.pivot.qvtcorebase.EnforcementOperation#getBottomPattern
* @model opposite="bottomPattern" containment="true" ordered="false"
* @generated
*/
@NonNull EList<EnforcementOperation> getEnforcementOperation();
/**
* Returns the value of the '<em><b>Realized Variable</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.pivot.qvtcorebase.RealizedVariable}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Realized Variable</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>Realized Variable</em>' containment reference list.
* @see org.eclipse.qvtd.pivot.qvtcorebase.QVTcoreBasePackage#getBottomPattern_RealizedVariable()
* @model containment="true" ordered="false"
* @generated
*/
@NonNull EList<RealizedVariable> getRealizedVariable();
} // BottomPattern