Package mydatagenerator.gui.panels.common

Examples of mydatagenerator.gui.panels.common.BusyLabelPanel


   
    browseButton = new JButton("Browse");
    browseButton.setEnabled(false);
        browseButton.addActionListener(this);
   
    busyLabelPanel = new BusyLabelPanel();
    busyLabelPanel.getJxBusyLabel().setBusy(false);   
   
    logOutputTextArea = new JTextArea();
    logOutputTextArea.setEditable(false);
    logOutputTextArea.setBorder(BorderFactory.createLineBorder(Color.black));   
View Full Code Here


    logOutputTextArea.setBorder(BorderFactory.createLineBorder(Color.black));   
   
    // Note: don't use the "add" method to add a component on the scroll panel to prevent textarea problems
    logOutputScrollPanel = new JScrollPane(logOutputTextArea,JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
   
    busyLabelPanel = new BusyLabelPanel();
    busyLabelPanel.getJxBusyLabel().setBusy(false);
   
    cleanDatabaseButton = new JButton("Clean Database");
    cleanDatabaseButton.addActionListener(this);
        
View Full Code Here

   
    exportTableAsCsvButton = new JButton("Export to file");
    exportTableAsCsvButton.addActionListener(this);
    exportTableAsCsvButton.setEnabled(false); //enable only when the table list is loaded
   
    busyLabelPanel = new BusyLabelPanel();
    busyLabelPanel.getJxBusyLabel().setBusy(false);
   
    closebutton = new JButton("Close");
    closebutton.addActionListener(this);
   
View Full Code Here

    fixHelpLabel = new JLabel("Choose the destination folder, the export file name will be the database name");   
   
    fullExportLabel = new JLabel("<html><b>Database Export</b></html>");
    exportTypeLabel = new JLabel("Export Type:");     
       
    busyLabelPanel = new BusyLabelPanel();
    busyLabelPanel.getJxBusyLabel().setBusy(false);
   
    closeButton = new JButton("Close");
    closeButton.addActionListener(this);
   
View Full Code Here

    this.mainFrame = mainFrame;
     
    this.setLayout(new MigLayout("wrap 3")); //we want 3 column
    this.setBorder(BorderFactory.createTitledBorder("Import a DBunit dataset"));
   
    busyLabelPanel = new BusyLabelPanel();
    busyLabelPanel.getJxBusyLabel().setBusy(false);
   
    //---- Import ----
    operationResultLabel = new JLabel(""); //show the operation result
   
View Full Code Here

TOP

Related Classes of mydatagenerator.gui.panels.common.BusyLabelPanel

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.