Package com.softsynth.jmsl.score
Class BinaryCopyBufferTransform
java.lang.Object
com.softsynth.jmsl.score.BinaryCopyBufferTransform
- Direct Known Subclasses:
MutationMeanTransform
,ZipperTransform
public abstract class BinaryCopyBufferTransform
extends java.lang.Object
BinaryCopyBufferTransform
Operate on two copy buffers, send output to a third copyBuffer. In practice, the third is Score.copyBuffer which is used by paste() JMSL Notation Project
Operate on two copy buffers, send output to a third copyBuffer. In practice, the third is Score.copyBuffer which is used by paste() JMSL Notation Project
- Author:
- Nick Didkovsky, copyright 2000 Nick Didkovsky
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
copyright
-
Constructor Summary
Constructors Constructor Description BinaryCopyBufferTransform()
-
Method Summary
Modifier and Type Method Description java.lang.String
getName()
abstract void
operate(CopyBuffer fromBuffer1, CopyBuffer fromBuffer2, CopyBuffer toBuffer)
Operate on CopyBuffer source1 & source2, sending result to CopyBuffer result.void
setName(java.lang.String s)
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
copyright
public static final java.lang.String copyright- See Also:
- Constant Field Values
-
-
Constructor Details
-
BinaryCopyBufferTransform
public BinaryCopyBufferTransform()
-
-
Method Details
-
getName
public java.lang.String getName() -
setName
public void setName(java.lang.String s) -
operate
Operate on CopyBuffer source1 & source2, sending result to CopyBuffer result. Don't forget to result.removeAllElements() first!
-