FileDocCategorySizeDatePackage
EmptyEnumeration.javaAPI DocExample261Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scripts.SQL.impl

EmptyEnumeration.java

// Generated by Together
package oisoft.togetherx.scripts.SQL.impl;

public class EmptyEnumeration implements java.util.Enumeration {
  public boolean hasMoreElements(){
    return false;
  }
  public Object nextElement(){
    return null;
  }
}