FileDocCategorySizeDatePackage
UMLCollaborationDiagramEnumeration.javaAPI DocExample1063Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scriptapi.UML.enums

UMLCollaborationDiagramEnumeration.java

/*----------------------------------------------------------------------------
Copyright (C) 1998 Object International Software GmbH
----------------------------------------------------------------------------*/
package oisoft.togetherx.scriptapi.UML.enums;

import java.util.Enumeration;

import oisoft.togetherx.scriptapi.UML.UMLCollaborationDiagram;

//------------------------------------------------------------------------------
/**
* Implemented typified enumeration for UMLCollaborationDiagram
* @version  2.1.01  Thu Apr 02 19:15:21 1998
* @author   Andrei Ivanov                  
*/
public class UMLCollaborationDiagramEnumeration extends UMLInteractionDiagramEnumeration
{
  public UMLCollaborationDiagramEnumeration(Enumeration e)
  {
    super(e);
  }

  public UMLCollaborationDiagram  getNextUMLCollaborationDiagram()
  {
    if (imp != null)
      return (UMLCollaborationDiagram) imp.nextElement();
    else
      return null;
  }
}
//------------------------------------------------------------------------------