All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.juffrou.xml.serializer.ArrayListSerializer Maven / Gradle / Ivy

There is a newer version: 2.1.9
Show newest version
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();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy