1 16 package org.apache.myfaces.util; 17 18 import java.util.Enumeration ; 19 import java.util.Iterator ; 20 21 22 39 public class IteratorEnumeration implements Enumeration  40 { 41 Iterator _it; 42 43 public IteratorEnumeration(Iterator it) 44 { 45 _it = it; 46 } 47 48 public boolean hasMoreElements() 49 { 50 return _it.hasNext(); 51 } 52 53 public Object nextElement() 54 { 55 return _it.next(); 56 } 57 } 58 | Popular Tags |