FileDocCategorySizeDatePackage
UMLNode.javaAPI DocExample1058Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scriptapi.UML

UMLNode.java

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

import oisoft.togetherx.scriptapi.UML.enums.*;
import java.awt.Rectangle;


//------------------------------------------------------------------------------
/**
 * Presents nodes - rectangular objects: classes, actors,
 * interfaces, usecases, packages, states, etc.
 * Node element is an object that has rectangle
 * area in diagram. This interface offers
 * graphical information for the node.
 * @version  2.1.05  20.08.1998
 * @author Sergey Dmitriev
 */
public interface UMLNode extends UMLElement
{
  /** Returns boundary box for the graphical presentation of the node.
   * @return java.awt.Rectangle of the node 
   */
  Rectangle getRectangle();
}
//------------------------------------------------------------------------------