/*----------------------------------------------------------------------------
Copyright © 1998 Object International Software GmbH
----------------------------------------------------------------------------*/
package oisoft.togetherx.scriptapi.UML;
//------------------------------------------------------------------------------
/**
* Presents Note in the diagram = plain text in a box that
* can be optionally associated with an element.
* @version 2.1.01 12.03.1998
* @author Andrei Ivanov
* @see UMLNoteLink
*/
public interface UMLNote extends UMLNode {
/** Getting the annotation text of the Note.
*/
String getText();
}
//------------------------------------------------------------------------------
|