/*----------------------------------------------------------------------------
Copyright (C) 1998 Object International Software GmbH
----------------------------------------------------------------------------*/
package oisoft.togetherx.scriptapi.UML.enums;
import java.util.Enumeration;
import oisoft.togetherx.scriptapi.UML.UMLInteractionDiagram;
//------------------------------------------------------------------------------
/**
* Implemented typified enumeration for UMLInteractionDiagram
* @version 2.1.01 Thu Apr 02 19:15:21 1998
* @author Andrei Ivanov
*/
public class UMLInteractionDiagramEnumeration extends UMLPackageEnumeration
{
public UMLInteractionDiagramEnumeration(Enumeration e)
{
super(e);
}
public UMLInteractionDiagram getNextUMLInteractionDiagram()
{
if (imp != null)
return (UMLInteractionDiagram) imp.nextElement();
else
return null;
}
}
//------------------------------------------------------------------------------ |