comparison src/com/aurellem/capture/audio/CompositeSoundProcessor.java @ 52:d799a0278cc9

advanced documentation.
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Dec 2011 13:51:28 -0600
parents be37291c62b8
children
comparison
equal deleted inserted replaced
51:6a1b28f060e6 52:d799a0278cc9
8 * Method of Combination for sound processors. This SoundProcessor will 8 * Method of Combination for sound processors. This SoundProcessor will
9 * run the methods of each of its constituent SoundProcessors in the order 9 * run the methods of each of its constituent SoundProcessors in the order
10 * in which it was constructed. 10 * in which it was constructed.
11 * 11 *
12 * @author Robert McIntyre 12 * @author Robert McIntyre
13 *
14 */ 13 */
15 public class CompositeSoundProcessor implements SoundProcessor{ 14 public class CompositeSoundProcessor implements SoundProcessor{
16 15
17 SoundProcessor[] processors; 16 SoundProcessor[] processors;
18 17