Class SignalProcessingSynthNotePruner

java.lang.Object
com.softsynth.jmsl.jsyn.SignalProcessingSynthNotePruner

public class SignalProcessingSynthNotePruner
extends java.lang.Object
Deprecated.
use the pure Java JSyn2 package instead
Hand it a Vector of fully qualified JSyn SynthNote classnames, and build two Vectors: one vector containing those classnames with input ports (ie. capable of signal processing) the other containing those classnames without input ports
Author:
Nick Didkovsky, July 2002, all rights reserved
  • Constructor Summary

    Constructors
    Constructor Description
    SignalProcessingSynthNotePruner()
    Deprecated.
     
  • Method Summary

    Modifier and Type Method Description
    static java.util.Vector getNONSignalProcessingSynthNotes()
    Deprecated.
     
    static java.util.Vector getSignalProcessingSynthNotes()
    Deprecated.
     
    static void prune​(java.util.Vector synthNotes)
    Deprecated.
    generate two Vectors: one with signal processing synthnote (those with a puclic input field, and one containing those without an input

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • SignalProcessingSynthNotePruner

      public SignalProcessingSynthNotePruner()
      Deprecated.
  • Method Details

    • prune

      public static void prune​(java.util.Vector synthNotes) throws java.lang.ClassNotFoundException, java.lang.InstantiationException, java.lang.IllegalAccessException
      Deprecated.
      generate two Vectors: one with signal processing synthnote (those with a puclic input field, and one containing those without an input
      Throws:
      java.lang.ClassNotFoundException
      java.lang.InstantiationException
      java.lang.IllegalAccessException
    • getSignalProcessingSynthNotes

      public static java.util.Vector getSignalProcessingSynthNotes()
      Deprecated.
      Returns:
      a Vector containing classnames of SynthNotes with a public input field. Call prune() first!
    • getNONSignalProcessingSynthNotes

      public static java.util.Vector getNONSignalProcessingSynthNotes()
      Deprecated.
      Returns:
      a Vector containing classnames of SynthNotes with NO public input field. Call prune() first!