FileDocCategorySizeDatePackage
UMLNote.javaAPI DocExample779Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scriptapi.UML

UMLNote.java

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