* @return true if any items were returned, false if there's
* nothing left to return.
*/
public boolean next_n(int how_many, org.omg.CosNaming.BindingListHolder bl) {
List accum = new ArrayList();
BindingHolder holder = new BindingHolder();
int i = 0;
// Keep iterating as long as there are entries
while (i < how_many && next_one(holder)) {
accum.add(holder.value);
i++;