blob: fd731c919283cc776141d06ff85e35cfae21868d [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2007, 2008 E.D.Willink 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
*
* </copyright>
*
* $Id: Area.java,v 1.1 2008/07/23 09:58:27 qglineur Exp $
*/
package org.eclipse.qvt.declarative.emof.QVTCore;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Area</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.qvt.declarative.emof.QVTCore.Area#getBottomPattern <em>Bottom Pattern</em>}</li>
* <li>{@link org.eclipse.qvt.declarative.emof.QVTCore.Area#getGuardPattern <em>Guard Pattern</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.qvt.declarative.emof.QVTCore.QVTCorePackage#getArea()
* @model abstract="true"
* @generated
*/
public interface Area extends EObject {
/**
* Returns the value of the '<em><b>Bottom Pattern</b></em>' containment reference.
* It is bidirectional and its opposite is '{@link org.eclipse.qvt.declarative.emof.QVTCore.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.qvt.declarative.emof.QVTCore.QVTCorePackage#getArea_BottomPattern()
* @see org.eclipse.qvt.declarative.emof.QVTCore.BottomPattern#getArea
* @model opposite="area" containment="true" required="true"
* @generated
*/
BottomPattern getBottomPattern();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.emof.QVTCore.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);
/**
* Returns the value of the '<em><b>Guard Pattern</b></em>' containment reference.
* It is bidirectional and its opposite is '{@link org.eclipse.qvt.declarative.emof.QVTCore.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.qvt.declarative.emof.QVTCore.QVTCorePackage#getArea_GuardPattern()
* @see org.eclipse.qvt.declarative.emof.QVTCore.GuardPattern#getArea
* @model opposite="area" containment="true" required="true"
* @generated
*/
GuardPattern getGuardPattern();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.emof.QVTCore.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);
} // Area