blob: d8cd7d06d39aa8f3f7b94c11314d0461a2897ec1 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2013, 2019 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 org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.ocl.pivot.TypedElement;
import org.eclipse.qvtd.pivot.qvtbase.Rule;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Basic Mapping Region</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A RuleRegion provides a graphical representation of an executable mapping defined by a Rule; QVTc Mapping or QVTr Relation.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.pivot.qvtschedule.RuleRegion#getReferredRule <em>Referred Rule</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.pivot.qvtschedule.QVTschedulePackage#getRuleRegion()
* @model
* @generated
*/
public interface RuleRegion extends MappingRegion {
/**
* Returns the value of the '<em><b>Referred Rule</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The Rule represented by this RuleRegion.
* <!-- end-model-doc -->
* @return the value of the '<em>Referred Rule</em>' reference.
* @see #setReferredRule(Rule)
* @see org.eclipse.qvtd.pivot.qvtschedule.QVTschedulePackage#getRuleRegion_ReferredRule()
* @model required="true"
* @generated
*/
Rule getReferredRule();
/**
* Sets the value of the '{@link org.eclipse.qvtd.pivot.qvtschedule.RuleRegion#getReferredRule <em>Referred Rule</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Referred Rule</em>' reference.
* @see #getReferredRule()
* @generated
*/
void setReferredRule(Rule value);
@Nullable Node getNode(@NonNull TypedElement typedElement);
} // BasicMappingRegion