Previous  Next          Package

Class MIDICompose.ChannelPressure

java.lang.Object
   |
   +----MIDICompose.MIDIObject
           |
           +----MIDICompose.MIDIEvent
                   |
                   +----MIDICompose.VoiceEvent
                           |
                           +----MIDICompose.ChannelPressure

public class ChannelPressure
extends VoiceEvent
implements Channelable, Amountable

Variable Index

 o MIN
Minimal amount (0).
 o MAX
Maximal amount (127).
 o ZERO
Zero (=no effect) amount (0).

Constructor Index

 o ChannelPressure(int)
Creates a new ChannelPressure with amount.
 o ChannelPressure(int, int, int)
Creates a new ChannelPressure with deltaTime, channel and amount.

Method Index

All methods from interfaces are implemented, but not listed here!

Constructors

 o ChannelPressure
 public ChannelPressure(int amount)
Creates a new ChannelPressure.

Parameters:
amount - any int between MIN and MAX.
 o ChannelPressure
 public ChannelPressure(int deltaTime,
                        int channel,
                        int amount)
Creates a new ChannelPressure.

Parameters:
deltaTime - any int (>= 0).
channel - any int between 0 and 15 (CHAN_1...CHAN_16).
amount - any int between MIN and MAX.

 Previous  Next          Package