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

Jean-Noel Rouvignac
15.17.2014 661593f15f14aaf55d73c7979dab1e900ebae2af
opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/IntegerArgument.java
@@ -36,17 +36,19 @@
 * potentially only those in a given range.
 */
public final class IntegerArgument extends Argument {
    // Indicates whether a lower bound will be enforced for this argument.
    /** Indicates whether a lower bound will be enforced for this argument. */
    private final boolean hasLowerBound;
    // Indicates whether an upper bound will be enforced for this
    // argument.
    /**
     * Indicates whether an upper bound will be enforced for this
     * argument.
     */
    private final boolean hasUpperBound;
    // The lower bound that will be enforced for this argument.
    /** The lower bound that will be enforced for this argument. */
    private final int lowerBound;
    // The upper bound that will be enforced for this argument.
    /** The upper bound that will be enforced for this argument. */
    private final int upperBound;
    /**