/[svn]/jsampler/trunk/src/org/jsampler/view/classic/AudioDevicesPage.java
ViewVC logotype

Diff of /jsampler/trunk/src/org/jsampler/view/classic/AudioDevicesPage.java

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

revision 841 by iliev, Mon Oct 10 16:03:12 2005 UTC revision 842 by iliev, Thu Mar 16 18:08:34 2006 UTC
# Line 59  import net.sf.juife.InformationDialog; Line 59  import net.sf.juife.InformationDialog;
59  import net.sf.juife.JuifeUtils;  import net.sf.juife.JuifeUtils;
60  import net.sf.juife.NavigationPage;  import net.sf.juife.NavigationPage;
61    
 import org.jsampler.CC;  
62  import org.jsampler.AudioDeviceModel;  import org.jsampler.AudioDeviceModel;
63    import org.jsampler.CC;
64    import org.jsampler.HF;
65    
66  import org.jsampler.event.AudioDeviceEvent;  import org.jsampler.event.AudioDeviceEvent;
67  import org.jsampler.event.AudioDeviceListEvent;  import org.jsampler.event.AudioDeviceListEvent;
# Line 307  public class AudioDevicesPage extends Na Line 308  public class AudioDevicesPage extends Na
308                                  ImageIcon icon = new ImageIcon(url);                                  ImageIcon icon = new ImageIcon(url);
309                                  if(icon.getImageLoadStatus() == MediaTracker.COMPLETE)                                  if(icon.getImageLoadStatus() == MediaTracker.COMPLETE)
310                                          putValue(Action.SMALL_ICON, icon);                                          putValue(Action.SMALL_ICON, icon);
311                          } catch(Exception x) { CC.getLogger().log(Level.INFO, x.getMessage(), x); }                          } catch(Exception x) {
312                                    CC.getLogger().log(Level.INFO, HF.getErrorMessage(x), x);
313                            }
314                                                    
315                          setEnabled(false);                          setEnabled(false);
316                  }                  }
# Line 344  public class AudioDevicesPage extends Na Line 347  public class AudioDevicesPage extends Na
347                                  ImageIcon icon = new ImageIcon(url);                                  ImageIcon icon = new ImageIcon(url);
348                                  if(icon.getImageLoadStatus() == MediaTracker.COMPLETE)                                  if(icon.getImageLoadStatus() == MediaTracker.COMPLETE)
349                                          putValue(Action.SMALL_ICON, icon);                                          putValue(Action.SMALL_ICON, icon);
350                          } catch(Exception x) { CC.getLogger().log(Level.INFO, x.getMessage(), x); }                          } catch(Exception x) {
351                                    CC.getLogger().log(Level.INFO, HF.getErrorMessage(x), x);
352                            }
353                                                    
354                          setEnabled(false);                          setEnabled(false);
355                  }                  }
# Line 375  public class AudioDevicesPage extends Na Line 380  public class AudioDevicesPage extends Na
380                                  ImageIcon icon = new ImageIcon(url);                                  ImageIcon icon = new ImageIcon(url);
381                                  if(icon.getImageLoadStatus() == MediaTracker.COMPLETE)                                  if(icon.getImageLoadStatus() == MediaTracker.COMPLETE)
382                                          putValue(Action.SMALL_ICON, icon);                                          putValue(Action.SMALL_ICON, icon);
383                          } catch(Exception x) { CC.getLogger().log(Level.INFO, x.getMessage(), x); }                          } catch(Exception x) {
384                                    CC.getLogger().log(Level.INFO, HF.getErrorMessage(x), x);
385                            }
386                                                    
387                          setEnabled(false);                          setEnabled(false);
388                  }                  }

Legend:
Removed from v.841  
changed lines
  Added in v.842

  ViewVC Help
Powered by ViewVC