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

SPEC: invalid example in MidiChannel

XMLWordPrintable

    • b44
    • generic
    • generic



      Name: vtR10009 Date: 12/08/2003


      Java Sound spec states for method MidiChannel.programChange():
      "Since banks are changed by way of control changes, you can
      verify the current bank with the following statement:
              int bank = (getController(0) * 127)
                         + getController(32);"
      This is misprint since Controller(0) denotes most significant 7-bit value
      of 14-bit value and this example should look like this:
              int bank = (getController(0) * 128)
                         + getController(32);
                 
      This bug may mislead the users.

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

            fbomerssunw Florian Bomers (Inactive)
            vitcsunw Vitc Vitc (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: