Package de.maramuse.soundcomp.process

Examples of de.maramuse.soundcomp.process.ValueType


   * @see de.maramuse.soundcomp.process.ProcessElement#setSource(int, de.maramuse.soundcomp.process.NamedSource, int)
   */
  @Override
  public void setSource(int connectionIndex, NamedSource source, int sourceIndex)
    throws UnknownConnectionException, TypeMismatchException {
  ValueType sourceType=source.getSourceTypes().get(sourceIndex);
  ValueType destType=destinationTypes.get(connectionIndex);
  if(destType==null)
    throw new UnknownConnectionException("Could not determine type of "+name+" input "
      +connectionIndex);
  if(sourceType==null)
    throw new UnknownConnectionException("Could not determine type of "+source.getAbstractName()
View Full Code Here

TOP

Related Classes of de.maramuse.soundcomp.process.ValueType

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.