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]
