01: package net.sourceforge.squirrel_sql.fw.datasetviewer;
02:
03: import javax.swing.*;
04:
05: /**
06: * Interface for creating frames within a window.
07: * This class lets fw operate without a dependance on the app code using it.
08: */
09: public interface IMainFrame {
10: public void addInternalFrame(JInternalFrame child,
11: boolean createMenuItem);
12: }
|