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

UMLPropertyEnumeration

public class UMLPropertyEnumeration extends Object implements Enumeration
Implemented typified enumeration for UMLLink
version
2.1.01 Thu Apr 02 19:15:21 1998
author
Sergey Dmitriev

Fields Summary
protected Enumeration
imp
Constructors Summary
public UMLPropertyEnumeration()

  
public UMLPropertyEnumeration(Enumeration e)

    imp = e;
  
Methods Summary
public oisoft.togetherx.scriptapi.UML.UMLPropertygetNextUMLProperty()

    if (imp != null)
      return (UMLProperty) imp.nextElement();
    else
      return null;
  
public booleanhasMoreElements()

    if (imp != null)
      return imp.hasMoreElements();
    else
      return false;
  
public java.lang.ObjectnextElement()

    if (imp != null)
      return imp.nextElement();
    else
      return null;