colHandler = CollectionHandlers.getHandler(value.getClass());
}
catch(MappingException mx) {
throw new MarshalException(mx);
}
enumeration = colHandler.elements(value);
}
if (enumeration.hasMoreElements()) {
StringBuffer sb = new StringBuffer();
for (int v = 0; enumeration.hasMoreElements(); v++) {
if (v > 0) sb.append(' ');