Uses of Class
com.softsynth.jmsl.score.CopyBuffer

Packages that use CopyBuffer
com.softsynth.jmsl.score   
com.softsynth.jmsl.score.transforms   
jmsltutorial   
 

Uses of CopyBuffer in com.softsynth.jmsl.score
 

Fields in com.softsynth.jmsl.score declared as CopyBuffer
static CopyBuffer Score.auxCopyBuffer1
           
static CopyBuffer Score.auxCopyBuffer2
           
static CopyBuffer Score.copyBuffer
           
 

Methods in com.softsynth.jmsl.score with parameters of type CopyBuffer
 void Score.copy(CopyBuffer buf)
          Copy selected notes into specified copy buffer
 void EditManager.copy(CopyBuffer copyBuffer)
          Copy from selection buffer to specified copy buffer
 void EditManager.freeflowPaste(CopyBuffer copyBuffer)
          Paste from specified copy buffer to score, ignore track and measure info of notes in copy buffer, just unroll them and paste in series using addNote(), which inserts measures if no room, or adds them at the end.
abstract  void UnaryCopyBufferTransform.operate(CopyBuffer copyBuffer)
          Implement this method to do whatever you want to the Vector of Note in copyBuffer
abstract  void BinaryCopyBufferTransform.operate(CopyBuffer fromBuffer1, CopyBuffer fromBuffer2, CopyBuffer toBuffer)
          Operate on CopyBuffer source1 & source2, sending result to CopyBuffer result.
 void EditManager.paste(CopyBuffer copyBuffer, boolean copyMeasureInfo)
          Paste from specified CopyBuffer to score
 

Uses of CopyBuffer in com.softsynth.jmsl.score.transforms
 

Methods in com.softsynth.jmsl.score.transforms with parameters of type CopyBuffer
 void ScrambleTransform.operate(CopyBuffer copyBuffer)
          Implement this method to do whatever you want to CopyBuffer passed to operate().
 void RetrogradeTransform.operate(CopyBuffer copyBuffer)
          Implement this method to do whatever you want to CopyBuffer passed to operate().
 void ZipperTransform.operate(CopyBuffer fromBuffer1, CopyBuffer fromBuffer2, CopyBuffer toBuffer)
          Operate on CopyBuffer source1 & source2, sending result to CopyBuffer result.
 

Uses of CopyBuffer in jmsltutorial
 

Methods in jmsltutorial with parameters of type CopyBuffer
 void ConvergeToMeanTransform.operate(CopyBuffer copyBuffer)
           
 void HocketTransform.operate(CopyBuffer copyBuffer)
           
 void MutationMeanTransform.operate(CopyBuffer fromBuffer1, CopyBuffer fromBuffer2, CopyBuffer toBuffer)