As a new feature, it would be nice if the DescriptorBase allowed access to all the attributes as a list or even returned all the attribute names for a given descriptor.
All that would have to be added would be:


public String[] getAttributeNames(){
   String[] returnVals = null;
   if (attributeMap != null && !attributeMap.isEmpty()){
       returnVals = attributeMap.keySet().toArray(String[]);
   }
   return returnVals;
}

Or something similiar.

--Bobby





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to