* Initialisation method used to build the objects that
* this instrument will use
*/
public void createChain() {
Pluck plk = new Pluck(this, sampleRate, channels, feedback);
Volume vol = new Volume(plk);
StereoPan pan = new StereoPan(vol);
Envelope env = new Envelope(pan, new double[]{0.0, 1.0, 0.9, 1.0, 1.0, 0.0});
}