com.softsynth.jsyn
Class SynthTablePort

java.lang.Object
  extended by com.softsynth.jsyn.SynthPort
      extended by com.softsynth.jsyn.SynthTablePort

public class SynthTablePort
extends SynthPort

SynthTablePort is used for attaching a SynthTable to a unit generator that uses tables.

Author:
(C) 1997 Phil Burk, SoftSynth.com, All Rights Reserved
See Also:
SynthTable, TableOscillator

Method Summary
 SynthTable getTable()
           
 void setTable(int partNumber, SynthTable table)
          Use this table on this TablePort.
 void setTable(SynthTable table)
           
 void useTable(int partNumber, SynthTable table)
          Deprecated. useTable() has been replaced by setTable().
 void useTable(SynthTable table)
          Deprecated. useTable() has been replaced by setTable().
 
Methods inherited from class com.softsynth.jsyn.SynthPort
getAlias, getName, getNumParts, getSignalType, getSignalType, getSound, setAlias, setSignalType, setSignalType, setSignalType, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

setTable

public void setTable(int partNumber,
                     SynthTable table)
              throws SynthException
Use this table on this TablePort.

Throws:
SynthException - If partNumber out of range or table invalid.

setTable

public void setTable(SynthTable table)
              throws SynthException
Throws:
SynthException

getTable

public SynthTable getTable()

useTable

public void useTable(int partNumber,
                     SynthTable table)
              throws SynthException
Deprecated. useTable() has been replaced by setTable().

Throws:
SynthException - If partNumber out of range or table invalid.
See Also:
setTable(int, com.softsynth.jsyn.SynthTable)

useTable

public void useTable(SynthTable table)
              throws SynthException
Deprecated. useTable() has been replaced by setTable().

Throws:
SynthException - If partNumber out of range or table invalid.
See Also:
setTable(int, com.softsynth.jsyn.SynthTable)