Examples of FilePanel


Examples of org.apache.jmeter.gui.util.FilePanel

                ComponentUtil.centerComponentInComponent(GuiPackage.getInstance().getMainFrame(), d);
                d.setVisible(true);
            }
        });

        filePanel = new FilePanel(JMeterUtils.getResString("file_visualizer_output_file"), ".jtl"); // $NON-NLS-1$ $NON-NLS-2$
        filePanel.addChangeListener(this);
        filePanel.add(new JLabel(JMeterUtils.getResString("log_only"))); // $NON-NLS-1$
        filePanel.add(errorLogging);
        filePanel.add(successOnlyLogging);
        filePanel.add(saveConfigButton);
View Full Code Here

Examples of org.apache.jmeter.gui.util.FilePanel

        warningThresholdField.addKeyListener(this);
        thresholdPanel.add(warningThresholdField);
        assertionPanel.add(thresholdPanel);

        // file panel
        filePanel = new FilePanel(JMeterUtils.getResString("html_assertion_file"), ".txt"); //$NON-NLS-1$ //$NON-NLS-2$
        assertionPanel.add(filePanel);

        mainPanel.add(assertionPanel, BorderLayout.NORTH);
        add(mainPanel, BorderLayout.CENTER);
    }
View Full Code Here

Examples of org.apache.jmeter.gui.util.FilePanel

                pattern = null;
                matcher = null;
            }
            if (getFile() != null && getFile().length() > 0) {
                clearData();
                FilePanel filePanel = (FilePanel) getFilePanel();
                filePanel.actionPerformed(event);
            }
        } else if (eventSource instanceof JButton) {
            // Changing color for column
            JButton btn = ((JButton) eventSource);
            if (btn.getName() != null) {
View Full Code Here

Examples of org.apache.jmeter.gui.util.FilePanel

        super();
       
        errorLogging =
            new JCheckBox(JMeterUtils.getResString("log_errors_only"));

        filePanel = new FilePanel(
                JMeterUtils.getResString("file_visualizer_output_file"),".jtl");
        filePanel.addChangeListener(this);
        filePanel.add(errorLogging);
               
    }
View Full Code Here

Examples of org.apache.jmeter.gui.util.FilePanel

                regexpChkBox.setEnabled(false);
            }
        } else if (eventSource == reloadButton) {
            if (getFile() != null && getFile().length() > 0) {
                clearData();
                FilePanel filePanel = (FilePanel) getFilePanel();
                filePanel.actionPerformed(event);
            }
        } else if (eventSource instanceof JButton) {
            // Changing color for column
            JButton btn = ((JButton) eventSource);
            if (btn.getName() != null) {
View Full Code Here

Examples of org.apache.jmeter.gui.util.FilePanel

                matcher = null;
            }
            if (getFile() != null && getFile().length() > 0) {
                // Reload data from file
                clearData();
                FilePanel filePanel = (FilePanel) getFilePanel();
                filePanel.actionPerformed(event);
            } else {
                // Reload data form internal list of results
                if (internalList.size() >= 2) {
                    synchronized (lockInterval) {
                        List<RespTimeGraphDataBean> tempList = new ArrayList<RespTimeGraphDataBean>();
View Full Code Here

Examples of org.apache.jmeter.gui.util.FilePanel

    warningThresholdField.addFocusListener(this);
    thresholdPanel.add(warningThresholdField);
    assertionPanel.add(thresholdPanel);

    //file panel
    filePanel = new FilePanel(JMeterUtils.getResString("file_visualizer_output_file"), ".txt");
    filePanel.addChangeListener(this);
    assertionPanel.add(filePanel);

    mainPanel.add(assertionPanel, BorderLayout.NORTH);
    add(mainPanel, BorderLayout.CENTER);
View Full Code Here

Examples of org.apache.jmeter.gui.util.FilePanel

        ComponentUtil.centerComponentInComponent(GuiPackage.getInstance().getMainFrame(), d);
        d.setVisible(true);
      }
    });

    filePanel = new FilePanel(JMeterUtils.getResString("file_visualizer_output_file"), ".jtl"); // $NON-NLS-1$ $NON-NLS-2$
    filePanel.addChangeListener(this);
    filePanel.add(errorLogging);
    filePanel.add(saveConfigButton);

  }
View Full Code Here

Examples of org.apache.jmeter.gui.util.FilePanel

    warningThresholdField.addFocusListener(this);
    thresholdPanel.add(warningThresholdField);
    assertionPanel.add(thresholdPanel);

    // file panel
    filePanel = new FilePanel(JMeterUtils.getResString("file_visualizer_output_file"), ".txt"); //$NON-NLS-1$ //$NON-NLS-2$
    filePanel.addChangeListener(this);
    assertionPanel.add(filePanel);

    mainPanel.add(assertionPanel, BorderLayout.NORTH);
    add(mainPanel, BorderLayout.CENTER);
View Full Code Here

Examples of org.apache.jmeter.gui.util.FilePanel

        JButton saveConfigButton = new JButton(
                JMeterUtils.getResString("config_save_settings")); // $NON-NLS-1$
        saveConfigButton.addActionListener(this);
        saveConfigButton.setActionCommand(ACTION_SAVE_CONFIG);

        mergeAndWritePanel = new FilePanel(
                "Merge and write results to output file", EXTS); // $NON-NLS-1$
        mergeAndWritePanel.addChangeListener(this);
        mergeAndWritePanel.add(saveConfigButton);

        mergeButton = new JButton("Merge");
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.