blob: b96a1cb210fa9d6950d340f7d7b39b8795922bcd [file] [log] [blame]
/**
* Copyright (c) 2016 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.umlx;
import java.util.Map;
import org.eclipse.emf.common.util.DiagnosticChain;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Rel Invocation Node</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.umlx.RelInvocationNode#isIsThen <em>Is Then</em>}</li>
* <li>{@link org.eclipse.qvtd.umlx.RelInvocationNode#getOwningRelDiagram <em>Owning Rel Diagram</em>}</li>
* <li>{@link org.eclipse.qvtd.umlx.RelInvocationNode#getOwnedRelInvocationEdges <em>Owned Rel Invocation Edges</em>}</li>
* <li>{@link org.eclipse.qvtd.umlx.RelInvocationNode#getReferredRelDiagram <em>Referred Rel Diagram</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.umlx.UMLXPackage#getRelInvocationNode()
* @generated
*/
public interface RelInvocationNode extends RelNode {
/**
* Returns the value of the '<em><b>Is Then</b></em>' attribute.
* The default value is <code>"true"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Is Then</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Is Then</em>' attribute.
* @see #setIsThen(boolean)
* @see org.eclipse.qvtd.umlx.UMLXPackage#getRelInvocationNode_IsThen()
* @generated
*/
boolean isIsThen();
/**
* Sets the value of the '{@link org.eclipse.qvtd.umlx.RelInvocationNode#isIsThen <em>Is Then</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Is Then</em>' attribute.
* @see #isIsThen()
* @generated
*/
void setIsThen(boolean value);
/**
* Returns the value of the '<em><b>Referred Rel Diagram</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Referred Rel Diagram</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Referred Rel Diagram</em>' reference.
* @see #setReferredRelDiagram(RelDiagram)
* @see org.eclipse.qvtd.umlx.UMLXPackage#getRelInvocationNode_ReferredRelDiagram()
* @generated
*/
RelDiagram getReferredRelDiagram();
/**
* Sets the value of the '{@link org.eclipse.qvtd.umlx.RelInvocationNode#getReferredRelDiagram <em>Referred Rel Diagram</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Referred Rel Diagram</em>' reference.
* @see #getReferredRelDiagram()
* @generated
*/
void setReferredRelDiagram(RelDiagram value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
boolean validateCompatibleEdges(DiagnosticChain diagnostics, Map<Object, Object> context);
/**
* Returns the value of the '<em><b>Owning Rel Diagram</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.umlx.RelDiagram#getOwnedRelInvocationNodes <em>Owned Rel Invocation Nodes</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owning Rel Diagram</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>Owning Rel Diagram</em>' container reference.
* @see #setOwningRelDiagram(RelDiagram)
* @see org.eclipse.qvtd.umlx.UMLXPackage#getRelInvocationNode_OwningRelDiagram()
* @see org.eclipse.qvtd.umlx.RelDiagram#getOwnedRelInvocationNodes
* @generated
*/
RelDiagram getOwningRelDiagram();
/**
* Sets the value of the '{@link org.eclipse.qvtd.umlx.RelInvocationNode#getOwningRelDiagram <em>Owning Rel Diagram</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Owning Rel Diagram</em>' container reference.
* @see #getOwningRelDiagram()
* @generated
*/
void setOwningRelDiagram(RelDiagram value);
/**
* Returns the value of the '<em><b>Owned Rel Invocation Edges</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.umlx.RelInvocationEdge}.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.umlx.RelInvocationEdge#getOwningRelInvocationNode <em>Owning Rel Invocation Node</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Rel Invocation Edges</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 Rel Invocation Edges</em>' containment reference list.
* @see org.eclipse.qvtd.umlx.UMLXPackage#getRelInvocationNode_OwnedRelInvocationEdges()
* @see org.eclipse.qvtd.umlx.RelInvocationEdge#getOwningRelInvocationNode
* @generated
*/
EList<RelInvocationEdge> getOwnedRelInvocationEdges();
} // RelInvocationNode