/**
* Initialisation method used to build the objects that this instrument will use
*/
public void createChain() {
Oscillator osc = new Oscillator(this, Oscillator.TRIANGLE_WAVE, this.sampleRate, this.channels);
AllPass ap = new AllPass(osc, this.delay);
SampleOut sout = new SampleOut(ap);
}