/Users/lyon/j4p/src/sound/filterDesign/AutoscaleEvent.java

1    package sound.filterDesign; 
2     
3    // Decompiled by Jad v1.5.8c. Copyright 2001 Pavel Kouznetsov. 
4    // Jad home page: http://www.geocities.com/kpdus/jad.html 
5    // Decompiler options: packimports(3)  
6    // Source File Name:   AutoscaleEvent.java 
7     
8    import java.util.EventObject; 
9     
10   public class AutoscaleEvent extends EventObject { 
11    
12       public AutoscaleEvent(Object obj) { 
13           super(obj); 
14           factor = 2D; 
15       } 
16    
17       public AutoscaleEvent(Object obj, double d) { 
18           super(obj); 
19           factor = d; 
20       } 
21    
22       double factor; 
23   } 
24