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

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

* *

If no specific implementation for the {@link Set} is specified, a {@link HashSet} will be used. * *

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

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