/**
  * Event constructor.
  *
  * @param source the sound object
  */
 public SoundLoadStateChangeEvent(Object source) {
   super(source);
   Sound sound = (Sound) source;
   loadState = sound.getLoadState();
 }