01: /*
02: * Created on 06-Jan-2006
03: */
04: package uk.org.ponder.beanutil;
05:
06: import java.util.Iterator;
07:
08: publicinterface IterableBeanLocator extendsBeanLocator {
09: /** Returns an iteration of the *names* of the beans in this BeanLocator */
10:publicIterator iterator();
11: }