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

Jean-Noel Rouvignac
15.17.2014 6870993d12bf8a2b9d5cd103dc5ccabc42f9bf5d
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;
    /**