package org.jbpm.pvm.internal.wire.descriptor; import java.util.ArrayList; import java.util.List; import org.jbpm.pvm.internal.wire.Descriptor; /** * *

This {@link Descriptor} creates a {@link List}.

* *

If no specific implementation for the {@link List} is specified, an {@link ArrayList} will be used. * *

Entries can be added during the list initialization. * The list of entries is specified with {@link #setValueDescriptors(List)}.

* * @author Tom Baeyens * @author Guillaume Porcher (documentation) * * @see Descriptor */ public class ListDescriptor extends CollectionDescriptor { private static final long serialVersionUID = 1L; public ListDescriptor() { super(ArrayList.class.getName()); } }