FileDocCategorySizeDatePackage
UMLDependency.javaAPI DocExample978Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scriptapi.UML

UMLDependency.java

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

import oisoft.togetherx.scriptapi.UML.enums.*;

//------------------------------------------------------------------------------
/**Presents dependency link.
 * A dependency is a relationship between
 * elements, where one depends on another.
 * A change in the "independent" element will
 * affect the dependent element.
 *
 * The examples of dependency between classes
 * that is not association is using local object
 * of one class in some method implementation of
 * another.
 *
 * @version  2.1.05  20.07.1998
 * @author Sergey Dmitriev
 */
public interface UMLDependency extends UMLLink
{
}
//------------------------------------------------------------------------------