FileDocCategorySizeDatePackage
UMLInteractionDiagram.javaAPI DocExample967Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scriptapi.UML

UMLInteractionDiagram.java

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

import oisoft.togetherx.scriptapi.UML.enums.*;

//------------------------------------------------------------------------------
/**
* Presents interaction diagrams: Sequence and Collaboration.
* @version  2.1.01  12.03.1998
* @author   Andrei Ivanov                  
* @see UMLSequenceDiagram
* @see UMLCollaborationDiagram
* @see UMLObject
* @see UMLMessage
*/
public interface UMLInteractionDiagram extends UMLPackage 
{
  /**Getting all the objects contained in the diagram.
   * @return Object enumerator to contained objects.
   * @see UMLObject
   */
  UMLObjectEnumeration  getObjects();
}
//------------------------------------------------------------------------------