FileDocCategorySizeDatePackage
UMLNoteLink.javaAPI DocExample683Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scriptapi.UML

UMLNoteLink.java

/*----------------------------------------------------------------------------
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();
}
//------------------------------------------------------------------------------