blob: b3463e8ef8045da795d7aa14079f703821b40727 [file] [log] [blame]
/*
* Copyright (c) 2005, 2011 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
*
* $Id: OccurrenceSpecification.java,v 1.8 2007/06/12 12:53:19 khussey Exp $
*/
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 occurrence specification is the basic semantic unit of interactions. The sequences of occurrences specified by them are the meanings of interactions.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <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>
* </p>
*
* @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
* <!-- 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);
/**
* 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
* <!-- 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