/*----------------------------------------------------------------------------
Copyright © 1998 Object International Software GmbH
----------------------------------------------------------------------------*/
package oisoft.togetherx.scriptapi.UML;
//------------------------------------------------------------------------------
/**
* Presents "uses" link.
* A "uses" relationship is a connection between
* two use cases where one use case uses another
* use case, indicating that as part of the
* specialized use case, the behavior of the
* general use case will also be included.
* A uses from use case A to use case B indicates
* that an instance of A can perform all the
* behavior described by B.
* @version 2.1.05 21.07.1998
* @author Sergey Dmitriev
* @see UMLUseCase
* @see UMLExtends
* @see UMLUseCaseDiagram
*/
public interface UMLUses extends UMLLink {
}
//------------------------------------------------------------------------------
|