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