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

UMLGeneralizableElementEnumeration.java

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

import java.util.Enumeration;

import oisoft.togetherx.scriptapi.UML.UMLGeneralizableElement;

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

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