blob: e5626bf0c8a3f5d6d4b33e8baca06ece443120d6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2013 E.D.Willink 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.ocl.pivot;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Behavior</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.pivot.Behavior#getOwningTransition <em>Owning Transition</em>}</li>
* </ul>
*
* @see org.eclipse.ocl.pivot.PivotPackage#getBehavior()
* @generated
*/
public interface Behavior extends org.eclipse.ocl.pivot.Class
{
/**
* Returns the value of the '<em><b>Owning Transition</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.ocl.pivot.Transition#getOwnedEffect <em>Owned Effect</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owning Transition</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 Transition</em>' container reference.
* @see #setOwningTransition(Transition)
* @see org.eclipse.ocl.pivot.PivotPackage#getBehavior_OwningTransition()
* @see org.eclipse.ocl.pivot.Transition#getOwnedEffect
* @generated
*/
Transition getOwningTransition();
/**
* Sets the value of the '{@link org.eclipse.ocl.pivot.Behavior#getOwningTransition <em>Owning Transition</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Owning Transition</em>' container reference.
* @see #getOwningTransition()
* @generated
*/
void setOwningTransition(Transition value);
} // Behavior