// If there are more elements get the next element
boolean hasMore = theEnumeration.hasMoreElements();
if (hasMore) {
InternalBindingKey theBindingKey =
((InternalBindingKey)theEnumeration.nextElement());
InternalBindingValue theElement =
(InternalBindingValue)theHashtable.get( theBindingKey );
NameComponent n = new NameComponent( theBindingKey.id, theBindingKey.kind );
NameComponent[] nlist = new NameComponent[1];
nlist[0] = n;
BindingType theType = theElement.theBindingType;