/[svn]/jsampler/trunk/src/org/jsampler/event/EffectChainEvent.java
ViewVC logotype

Diff of /jsampler/trunk/src/org/jsampler/event/EffectChainEvent.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2194 by iliev, Fri Jun 24 21:34:51 2011 UTC revision 2195 by iliev, Tue Jun 28 22:44:39 2011 UTC
# Line 21  Line 21 
21   */   */
22  package org.jsampler.event;  package org.jsampler.event;
23    
24  import org.linuxsampler.lscp.EffectChain;  import org.jsampler.EffectChain;
 import org.linuxsampler.lscp.EffectInstance;  
25    
26  /**  /**
27   *   *
# Line 30  import org.linuxsampler.lscp.EffectInsta Line 29  import org.linuxsampler.lscp.EffectInsta
29   */   */
30  public class EffectChainEvent extends java.util.EventObject {  public class EffectChainEvent extends java.util.EventObject {
31          private EffectChain chain;          private EffectChain chain;
         private EffectInstance[] instances;  
32                    
33          /**          /**
34           * Constructs an <code>EffectChainEvent</code> object.           * Constructs an <code>EffectChainEvent</code> object.
35           *           *
36           * @param source The object that originated the event.           * @param source The object that originated the event.
          * @param audioDeviceModel The model of the audio device to which  
          * the specified effect chain belongs  
37           * @param chain The effect chain.           * @param chain The effect chain.
          * @param instances The new list of effect stances.  
38           */           */
39          public          public
40          EffectChainEvent( Object source, EffectChain chain, EffectInstance[] instances ) {          EffectChainEvent(Object source, EffectChain chain) {
41                  super(source);                  super(source);
42                  this.chain = chain;                  this.chain = chain;
                 this.instances = instances;  
43          }          }
44                    
45          /**          /**
# Line 55  public class EffectChainEvent extends ja Line 49  public class EffectChainEvent extends ja
49           */           */
50          public EffectChain          public EffectChain
51          getEffectChain() { return chain; }          getEffectChain() { return chain; }
           
         /** Provides the new list of effect instances. */  
         public EffectInstance[]  
         getEffectInstances() { return instances; }  
52  }  }

Legend:
Removed from v.2194  
changed lines
  Added in v.2195

  ViewVC Help
Powered by ViewVC