* @see com.thoughtworks.xstream.converters.Converter#marshal(java.lang.Object,
* com.thoughtworks.xstream.io.HierarchicalStreamWriter,
* com.thoughtworks.xstream.converters.MarshallingContext)
*/
public void marshal(Object arg0, HierarchicalStreamWriter writer, MarshallingContext context) {
MultiProperty prop = (MultiProperty) arg0;
writer.addAttribute(ATT_NAME, ConversionHelp.encode(prop.getName()));
PropertyIterator iter = prop.iterator();
while (iter.hasNext()) {
writeItem(iter.next(), context, writer);
}
}