Package de.maramuse.soundcomp.util

Examples of de.maramuse.soundcomp.util.NotImplementedException


  return "$$$GlobalTimer$$$Instance";
  }

  @Override
  public void setAbstractName(String abstractName) {
  throw new NotImplementedException();
  }
View Full Code Here


  throw new NotImplementedException();
  }

  @Override
  public void setInstanceName(String instanceName) {
  throw new NotImplementedException();
  }
View Full Code Here

   *      But: this ProcessElement is usually not for use in single events Should we throw an Exception on cloning
   *      attempt? Maybe not, as we might have "voice templates" later on.
   */
  @Override
  public InputFile clone() {
  throw new NotImplementedException("InputFile cloning not yet supported");
  // InputFile c=new InputFile(nChannels);
  // c.abstractName=abstractName;
  // return c;
  }
View Full Code Here

    break;
    case FileFormats.FMT_FLAC_OGG_16:
    writeFlacStream(s, true, 16);
    break;
    case FileFormats.FMT_WAVE_U32:
     throw new NotImplementedException();
    case FileFormats.FMT_VORBIS_OGG:
    writeOggVorbisStream(s);
    break;
    case FileFormats.FMT_MP3:
    writeMp3Stream(s);
    break;
    case FileFormats.FMT_MPC7_16: // will we ever support that? or is MPC8 enough?
    case FileFormats.FMT_MPC8_16:
    case FileFormats.FMT_WAVE_S8:
    case FileFormats.FMT_WAVE_U16:
    case FileFormats.FMT_WAVE_U24:
     throw new NotImplementedException();
    default:
    throw new IllegalArgumentException();
  }
  } 
View Full Code Here

  /**
   * write an mp3 stream
   * @param s  the Stream to write to
   */
  private void writeMp3Stream(OutputStream os){
   throw new NotImplementedException();
  }
View Full Code Here

  /**
   * write an ogg vorbis stream
   * @param s  the Stream to write to
   */
  private void writeOggVorbisStream(OutputStream os){
   throw new NotImplementedException();
  }
View Full Code Here

  /**
   * getValue throws an exception. It is not meant to be called.
   */
  @Override
  public double getValue(int index){
  throw new NotImplementedException();
  }
View Full Code Here

TOP

Related Classes of de.maramuse.soundcomp.util.NotImplementedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.