blob: 2300d2e9a52efc2340459920f9b4631edcb4c7b6 [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.ocl.pivot.Element;
import org.eclipse.ocl.pivot.Variable;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Area</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.pivot.qvtcorebase.Area#getGuardPattern <em>Guard Pattern</em>}</li>
* <li>{@link org.eclipse.qvtd.pivot.qvtcorebase.Area#getBottomPattern <em>Bottom Pattern</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.pivot.qvtcorebase.QVTcoreBasePackage#getArea()
* @model interface="true" abstract="true"
* @generated
*/
public interface Area extends Element {
/**
* Returns the value of the '<em><b>Guard Pattern</b></em>' containment reference.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.pivot.qvtcorebase.GuardPattern#getArea <em>Area</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Guard Pattern</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Guard Pattern</em>' containment reference.
* @see #setGuardPattern(GuardPattern)
* @see org.eclipse.qvtd.pivot.qvtcorebase.QVTcoreBasePackage#getArea_GuardPattern()
* @see org.eclipse.qvtd.pivot.qvtcorebase.GuardPattern#getArea
* @model opposite="area" containment="true" required="true"
* @generated
*/
GuardPattern getGuardPattern();
/**
* Sets the value of the '{@link org.eclipse.qvtd.pivot.qvtcorebase.Area#getGuardPattern <em>Guard Pattern</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Guard Pattern</em>' containment reference.
* @see #getGuardPattern()
* @generated
*/
void setGuardPattern(GuardPattern value);
/**
* Returns the value of the '<em><b>Bottom Pattern</b></em>' containment reference.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.pivot.qvtcorebase.BottomPattern#getArea <em>Area</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Bottom Pattern</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Bottom Pattern</em>' containment reference.
* @see #setBottomPattern(BottomPattern)
* @see org.eclipse.qvtd.pivot.qvtcorebase.QVTcoreBasePackage#getArea_BottomPattern()
* @see org.eclipse.qvtd.pivot.qvtcorebase.BottomPattern#getArea
* @model opposite="area" containment="true" required="true"
* @generated
*/
BottomPattern getBottomPattern();
/**
* Sets the value of the '{@link org.eclipse.qvtd.pivot.qvtcorebase.Area#getBottomPattern <em>Bottom Pattern</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Bottom Pattern</em>' containment reference.
* @see #getBottomPattern()
* @generated
*/
void setBottomPattern(BottomPattern value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation" ordered="false"
* @generated
*/
EList<Variable> getAllVariables();
} // Area