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

UMLNoteEnumeration.java

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

import java.util.Enumeration;

import oisoft.togetherx.scriptapi.UML.UMLNote;

//------------------------------------------------------------------------------
/**
* Implemented typified enumeration for UMLNoteLink
* @version  2.1.01  Thu Apr 02 19:15:21 1998
* @author Sergey Dmitriev
*/
public class UMLNoteEnumeration extends UMLLinkEnumeration
{
  public UMLNoteEnumeration(Enumeration e)
  {
    super(e);
  }

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