/*----------------------------------------------------------------------------
Copyright © 1998 Object International Software GmbH
----------------------------------------------------------------------------*/
package oisoft.togetherx.scriptapi.UML;
//------------------------------------------------------------------------------
/**
* Presents link between an element and Note connected to it.
* @version 2.1.01 12.03.1998
* @author Andrei Ivanov
* @see UMLNote
*/
public interface UMLNoteLink extends UMLLink {
UMLElement getElement();
UMLNote getNoteElement();
}
//------------------------------------------------------------------------------
|