net.sf.juffrou.xml.serializer.ArrayListSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of juffrou-xml Show documentation
Show all versions of juffrou-xml Show documentation
Juffrou XML is simplified marshaling for java beans into XML and back.
package net.sf.juffrou.xml.serializer;
import java.util.ArrayList;
import java.util.Collection;
import net.sf.juffrou.xml.internal.JuffrouBeanMetadata;
public class ArrayListSerializer extends AbstractCollectionSerializer {
public ArrayListSerializer(JuffrouBeanMetadata xmlBeanMetadata) {
super(xmlBeanMetadata);
}
@Override
protected Collection> instantiateCollection() {
return new ArrayList();
}
}