blob: 8132dd331074ca5f5b603ea407937ed4a1df06a2 [file] [log] [blame]
/*
* Copyright (c) 2005, 2015 IBM Corporation, CEA, 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:
* IBM - initial API and implementation
* Kenn Hussey (CEA) - 327039, 297216, 418466, 451350
* Christian W. Damus (CEA) - 251963
*
*/
package org.eclipse.uml2.uml;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Occurrence Specification</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* An OccurrenceSpecification is the basic semantic unit of Interactions. The sequences of occurrences specified by them are the meanings of Interactions.
* <p>From package UML::Interactions.</p>
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.uml2.uml.OccurrenceSpecification#getToAfters <em>To After</em>}</li>
* <li>{@link org.eclipse.uml2.uml.OccurrenceSpecification#getToBefores <em>To Before</em>}</li>
* </ul>
*
* @see org.eclipse.uml2.uml.UMLPackage#getOccurrenceSpecification()
* @model
* @generated
*/
public interface OccurrenceSpecification
extends InteractionFragment {
/**
* Returns the value of the '<em><b>To Before</b></em>' reference list.
* The list contents are of type {@link org.eclipse.uml2.uml.GeneralOrdering}.
* It is bidirectional and its opposite is '{@link org.eclipse.uml2.uml.GeneralOrdering#getAfter <em>After</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* References the GeneralOrderings that specify EventOcurrences that must occur before this OccurrenceSpecification.
* <p>From package UML::Interactions.</p>
* <!-- end-model-doc -->
* @return the value of the '<em>To Before</em>' reference list.
* @see org.eclipse.uml2.uml.UMLPackage#getOccurrenceSpecification_ToBefore()
* @see org.eclipse.uml2.uml.GeneralOrdering#getAfter
* @model opposite="after" ordered="false"
* @generated
*/
EList<GeneralOrdering> getToBefores();
/**
* Retrieves the first {@link org.eclipse.uml2.uml.GeneralOrdering} with the specified '<em><b>Name</b></em>' from the '<em><b>To Before</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param name The '<em><b>Name</b></em>' of the {@link org.eclipse.uml2.uml.GeneralOrdering} to retrieve, or <code>null</code>.
* @return The first {@link org.eclipse.uml2.uml.GeneralOrdering} with the specified '<em><b>Name</b></em>', or <code>null</code>.
* @see #getToBefores()
* @generated
*/
GeneralOrdering getToBefore(String name);
/**
* Retrieves the first {@link org.eclipse.uml2.uml.GeneralOrdering} with the specified '<em><b>Name</b></em>' from the '<em><b>To Before</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param name The '<em><b>Name</b></em>' of the {@link org.eclipse.uml2.uml.GeneralOrdering} to retrieve, or <code>null</code>.
* @param ignoreCase Whether to ignore case in {@link java.lang.String} comparisons.
* @return The first {@link org.eclipse.uml2.uml.GeneralOrdering} with the specified '<em><b>Name</b></em>', or <code>null</code>.
* @see #getToBefores()
* @generated
*/
GeneralOrdering getToBefore(String name, boolean ignoreCase);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Returns the Lifeline on which the OccurrenceSpecification appears.
* <!-- end-model-doc -->
* @model kind="operation" ordered="false"
* @generated
*/
Lifeline getCovered();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Sets the Lifeline on which the OccurrenceSpecification appears.
* <!-- end-model-doc -->
* @model valueRequired="true" valueOrdered="false"
* @generated
*/
void setCovered(Lifeline value);
/**
* Returns the value of the '<em><b>To After</b></em>' reference list.
* The list contents are of type {@link org.eclipse.uml2.uml.GeneralOrdering}.
* It is bidirectional and its opposite is '{@link org.eclipse.uml2.uml.GeneralOrdering#getBefore <em>Before</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* References the GeneralOrderings that specify EventOcurrences that must occur after this OccurrenceSpecification.
* <p>From package UML::Interactions.</p>
* <!-- end-model-doc -->
* @return the value of the '<em>To After</em>' reference list.
* @see org.eclipse.uml2.uml.UMLPackage#getOccurrenceSpecification_ToAfter()
* @see org.eclipse.uml2.uml.GeneralOrdering#getBefore
* @model opposite="before" ordered="false"
* @generated
*/
EList<GeneralOrdering> getToAfters();
/**
* Retrieves the first {@link org.eclipse.uml2.uml.GeneralOrdering} with the specified '<em><b>Name</b></em>' from the '<em><b>To After</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param name The '<em><b>Name</b></em>' of the {@link org.eclipse.uml2.uml.GeneralOrdering} to retrieve, or <code>null</code>.
* @return The first {@link org.eclipse.uml2.uml.GeneralOrdering} with the specified '<em><b>Name</b></em>', or <code>null</code>.
* @see #getToAfters()
* @generated
*/
GeneralOrdering getToAfter(String name);
/**
* Retrieves the first {@link org.eclipse.uml2.uml.GeneralOrdering} with the specified '<em><b>Name</b></em>' from the '<em><b>To After</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param name The '<em><b>Name</b></em>' of the {@link org.eclipse.uml2.uml.GeneralOrdering} to retrieve, or <code>null</code>.
* @param ignoreCase Whether to ignore case in {@link java.lang.String} comparisons.
* @return The first {@link org.eclipse.uml2.uml.GeneralOrdering} with the specified '<em><b>Name</b></em>', or <code>null</code>.
* @see #getToAfters()
* @generated
*/
GeneralOrdering getToAfter(String name, boolean ignoreCase);
} // OccurrenceSpecification