Examples of MainFrame


Examples of de.sciss.meloncillo.gui.MainFrame

  public void setDirty( boolean dirty )
  {
    if( !this.dirty == dirty ) {
      this.dirty = dirty;
      MainFrame  mf = (MainFrame) AbstractApplication.getApplication().getComponent( Main.COMP_MAIN );
      if( mf != null ) mf.updateTitle();
    }
  }
View Full Code Here

Examples of edu.umd.cs.findbugs.gui2.MainFrame

        }
        GUISaveState.loadInstance();
        try {
            FindBugsLayoutManagerFactory factory = new FindBugsLayoutManagerFactory(SplitLayout.class.getName());
            MainFrame.makeInstance(factory);
            MainFrame instance = MainFrame.getInstance();
            instance.waitUntilReady();
            instance.openBugCollection(bugs);
        } catch (RuntimeException e) {
            throw e;
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
View Full Code Here

Examples of emometer.view.MainFrame

            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        } catch (Exception e) {
            e.printStackTrace();
        }
        pool = new JedisPool(new JedisPoolConfig(), "localhost");
        MainFrame mf = MainFrame.getInstance();
        mf.setVisible(true);
        Window.switchPanel(new Home());
    }
View Full Code Here

Examples of frost.MainFrame

                t.printStackTrace();
            }
        }

        // call order is order of panels in gui
        final MainFrame mainFrame = MainFrame.getInstance();
        getDownloadManager().addPanelToMainFrame(mainFrame);
        getUploadManager().addPanelToMainFrame(mainFrame);
        getSearchManager().addPanelToMainFrame(mainFrame);
        getSharedFilesManager().addPanelToMainFrame(mainFrame);
    }
View Full Code Here

Examples of gui.MainFrame

     * System.out
     * .println("\nPrintout after removing interval with low-end 10:");
     * System.out.println(intervalTree.toString());
     */

    JFrame main = new MainFrame();
    main.setVisible(true);
  }
View Full Code Here

Examples of gui.mainFrame.MainFrame

    /**
     * Makes the tool visible.
     */
    public void showUI()
    {
        this.mainFrame = new MainFrame(this);
        this.menuBar = new MenuBar(this, controller);
        this.mainFrame.setMenuBar(menuBar);
        showCodeViewer();
        showPathEditor();
        this.mainFrame.showUI();
View Full Code Here

Examples of instantbach.gui.MainFrame

                                          "Error",
                                          JOptionPane.ERROR_MESSAGE);

            System.exit(0);
        }
        mainFrame = new MainFrame(this, service.getAvailableSymbols());
        mainFrame.setVisible(true);

    }
View Full Code Here

Examples of jflex.gui.MainFrame

    if (files.size() > 0) {
      for (File file : files)
        generate(file);
    }
    else {
      new MainFrame();
    }   
  }
View Full Code Here

Examples of kameleon.gui.view.MainFrame

        @Override
        public void run() {
            try {
                GuiWorkSpaceManager.ensureBaseLanguage();
                SwitchLanguage.initialize();
                MainFrame gui = new MainFrame(this.main.debugMode);
                gui.setVisible(true);
            } catch (KameleonException ke) {
                this.main.displayErrorMessage(ke);
            }// try
        }// run()
View Full Code Here

Examples of lmnd.view.MainFrame

        /**
         * Entry point of the program.
         * @param arguments the command line arguments.
         */
        public static void main(String[] arguments) {
                final MainFrame mainFrame = new MainFrame();
                SwingUtilities.invokeLater(new Runnable() {
                        public void run() {
                                mainFrame.setVisible(true);
                        }
                });
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.