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

Diff of /jsampler/trunk/src/org/jsampler/view/JSMainFrame.java

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

revision 1203 by iliev, Mon Apr 2 21:18:31 2007 UTC revision 1204 by iliev, Thu May 24 21:43:45 2007 UTC
# Line 22  Line 22 
22    
23  package org.jsampler.view;  package org.jsampler.view;
24    
25    import java.awt.Dialog;
26  import java.awt.Dimension;  import java.awt.Dimension;
27    import java.awt.Frame;
28    
29  import java.awt.event.WindowAdapter;  import java.awt.event.WindowAdapter;
30  import java.awt.event.WindowEvent;  import java.awt.event.WindowEvent;
# Line 39  import org.jsampler.Prefs; Line 41  import org.jsampler.Prefs;
41  import org.jsampler.event.SamplerChannelListEvent;  import org.jsampler.event.SamplerChannelListEvent;
42  import org.jsampler.event.SamplerChannelListListener;  import org.jsampler.event.SamplerChannelListListener;
43    
44    
45  /**  /**
46   * Defines the skeleton of a JSampler's main frame.   * Defines the skeleton of a JSampler's main frame.
47   * @author Grigor Iliev   * @author Grigor Iliev
# Line 82  public abstract class JSMainFrame extend Line 85  public abstract class JSMainFrame extend
85          public abstract void installJSamplerHome();          public abstract void installJSamplerHome();
86                    
87          /**          /**
88             * Shows a detailed error information about the specified exception.
89             */
90            public abstract void showDetailedErrorMessage(Frame owner, String err, String details);
91            
92            /**
93             * Shows a detailed error information about the specified exception.
94             */
95            public abstract void showDetailedErrorMessage(Dialog owner, String err, String details);
96            
97            /**
98           * Returns a list containing all <code>JSChannelsPane</code>s added to the view.           * Returns a list containing all <code>JSChannelsPane</code>s added to the view.
99           * @return A list containing all <code>JSChannelsPane</code>s added to the view.           * @return A list containing all <code>JSChannelsPane</code>s added to the view.
100           * @see #addChannelsPane           * @see #addChannelsPane
# Line 215  public abstract class JSMainFrame extend Line 228  public abstract class JSMainFrame extend
228                                    
229                  return null;                  return null;
230          }          }
231            
232            /**
233             * Determines whether this view has instruments database support.
234             * @return <code>true</code>
235             */
236            public boolean
237            getInstrumentsDbSupport() { return false; }
238  }  }

Legend:
Removed from v.1203  
changed lines
  Added in v.1204

  ViewVC Help
Powered by ViewVC