FileDocCategorySizeDatePackage
UMLExtends.javaAPI DocExample1080Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scriptapi.UML

UMLExtends.java

/*----------------------------------------------------------------------------
Copyright © 1998 Object International Software GmbH
----------------------------------------------------------------------------*/
package oisoft.togetherx.scriptapi.UML;


//------------------------------------------------------------------------------
/**
 * Presents "extends" link.
 * An "extends" relationship is a connection between two
 * use cases where one use case extends another use
 * case by adding actions to a general use case.
 * An "extends" relationship from use case A to use case B
 * indicates that an instance of B can be extended and perform all
 * the behavior described in A. The behavior described by A is
 * optional and triggered by a condition in use case B.
 * @version  2.1.05  21.07.1998
 * @author   Sergey Dmitriev
 * @see UMLUseCase
 * @see UMLUses
 * @see UMLUseCaseDiagram
 */
public interface UMLExtends extends UMLLink {
}
//------------------------------------------------------------------------------