Package placeholder.ui.panel

Examples of placeholder.ui.panel.SimplePanel


  }
 
  public SimpleUI(WebsiteQueue queue, WebsiteResultQueue resultQueue) {
    super("Plaecholder");
    this.setLayout(new BorderLayout());
    this.add(new SimplePanel(queue, resultQueue));
    this.setDefaultCloseOperation(EXIT_ON_CLOSE);
    this.setPreferredSize(new Dimension(375, 200));
    this.pack();
    this.setLocationRelativeTo(null);
    this.setVisible(true);   
View Full Code Here


    this.setVisible(true);

    int number = new Integer(JOptionPane.showInputDialog("Enter number of crawlers you want start:"));
   
    for (int i = 0; i < number; i++) {
      SimplePanel panel = new SimplePanel(queue, resultQueue);
      this.tabs.add(panel);
      this.tabbedPane.addTab(new Integer(i + 1).toString(), (Component)panel);
    }
  }
View Full Code Here

TOP

Related Classes of placeholder.ui.panel.SimplePanel

Copyright © 2018 www.massapicom. 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.