/* * Created on Jan 4, 2005 * */ package jmslexamples.simple; import com.softsynth.jmsl.UniformRandomBehavior; /** * Same as JSynSong except the verse, chorus, and rest will come in an unpredictable order * * @author Nick Didkovsky, didkovn@mail.rockefeller.edu * */ public class UnpredictableSong extends JSynSong { protected void buildSong() { super.buildSong(); mySong.setBehavior(new UniformRandomBehavior()); mySong.setRepeats(5); } }