mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
15.17.2014 6870993d12bf8a2b9d5cd103dc5ccabc42f9bf5d
opendj-cli/src/main/java/com/forgerock/opendj/cli/MultiChoiceArgument.java
@@ -41,11 +41,13 @@
 *            The type of values returned by this argument.
 */
public final class MultiChoiceArgument<T> extends Argument {
    // Indicates whether argument values should be treated in a
    // case-sensitive manner.
    /**
     * Indicates whether argument values should be treated in a
     * case-sensitive manner.
     */
    private final boolean caseSensitive;
    // The set of values that will be allowed for use with this argument.
    /** The set of values that will be allowed for use with this argument. */
    private final Collection<T> allowedValues;
    /**