blob: 3417e4977ed72d7af2d4b6d9952322dc0151a52e [file] [log] [blame]
/*
* Copyright (c) 2005, 2006 IBM Corporation 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
*
* $Id: GeneralOrdering.java,v 1.2 2006/05/12 20:38:05 khussey Exp $
*/
package org.eclipse.uml2.uml;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>General Ordering</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A general ordering represents a binary relation between two occurrence specifications, to describe that one occurrence specification must occur before the other in a valid trace. This mechanism provides the ability to define partial orders of occurrence cpecifications that may otherwise not have a specified order.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.uml2.uml.GeneralOrdering#getBefore <em>Before</em>}</li>
* <li>{@link org.eclipse.uml2.uml.GeneralOrdering#getAfter <em>After</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.uml2.uml.UMLPackage#getGeneralOrdering()
* @model
* @generated
*/
public interface GeneralOrdering
extends NamedElement {
/**
* Returns the value of the '<em><b>Before</b></em>' reference.
* It is bidirectional and its opposite is '{@link org.eclipse.uml2.uml.OccurrenceSpecification#getToAfters <em>To After</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The OccurrenceSpecification referenced comes before the OccurrenceSpecification referenced by after.
* <!-- end-model-doc -->
* @return the value of the '<em>Before</em>' reference.
* @see #setBefore(OccurrenceSpecification)
* @see org.eclipse.uml2.uml.UMLPackage#getGeneralOrdering_Before()
* @see org.eclipse.uml2.uml.OccurrenceSpecification#getToAfters
* @model opposite="toAfter" required="true" ordered="false"
* @generated
*/
OccurrenceSpecification getBefore();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.GeneralOrdering#getBefore <em>Before</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Before</em>' reference.
* @see #getBefore()
* @generated
*/
void setBefore(OccurrenceSpecification value);
/**
* Returns the value of the '<em><b>After</b></em>' reference.
* It is bidirectional and its opposite is '{@link org.eclipse.uml2.uml.OccurrenceSpecification#getToBefores <em>To Before</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The OccurrenceSpecification referenced comes after the OccurrenceSpecification referenced by before.
* <!-- end-model-doc -->
* @return the value of the '<em>After</em>' reference.
* @see #setAfter(OccurrenceSpecification)
* @see org.eclipse.uml2.uml.UMLPackage#getGeneralOrdering_After()
* @see org.eclipse.uml2.uml.OccurrenceSpecification#getToBefores
* @model opposite="toBefore" required="true" ordered="false"
* @generated
*/
OccurrenceSpecification getAfter();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.GeneralOrdering#getAfter <em>After</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>After</em>' reference.
* @see #getAfter()
* @generated
*/
void setAfter(OccurrenceSpecification value);
} // GeneralOrdering