Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4398968

Doc for javax.swing.SpinnerNumberModel(int | double,...) is incorrect

XMLWordPrintable

    • beta
    • sparc
    • solaris_2.6



      Name: ooR10001 Date: 12/18/2000


      Specification for javax.swing.SpinnerNumberModel.SpinnerNumberModel(int, int, int, int) and
      for javax.swing.SpinnerNumberModel.SpinnerNumberModel(double, double, double, double) is
      incorrect because it says:
      ------------------------------------------------------------
      SpinnerNumberModel

      public SpinnerNumberModel(int value,
                                int minimum,
                                int maximum,
                                int stepSize)

            Construct a SpinnerNumberModel with the specified value, minimum/maximum bounds,
            and stepSize.
            Parameters:
                  value - the current value of the model
                  minimum - the first number in the sequence
                  maximum - the last number in the sequence
                  stepSize - the difference between elements of the sequence
            Throws:
                  IllegalArgumentException - if stepSize or value is null or if the following
                                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  expression is false: minimum <= value <= maximum


      SpinnerNumberModel

      public SpinnerNumberModel(double value,
                                double minimum,
                                double maximum,
                                double stepSize)

            Construct a SpinnerNumberModel with the specified value, minimum/maximum bounds, and
      stepSize.
            Parameters:
                  value - the current value of the model
                  minimum - the first number in the sequence
                  maximum - the last number in the sequence
                  stepSize - the difference between elements of the sequence
            Throws:
                  IllegalArgumentException - if stepSize or value is null or if the following
                                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  expression is false: minimum <= value <= maximum
      ------------------------------------------------------------
      In fact, the 'stepSize' and 'value' parameters can not be null because they has primitive
      type. It needs to be fixed.

      ======================================================================

            sharonz Sharon Zakhour (Inactive)
            oovsunw Oov Oov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: