Package org.apache.jmeter.util

Examples of org.apache.jmeter.util.ScopePanel


     * @param enableParentAndSubsamples set true to enable the parent and sub-samples
     * @param enableSubsamplesOnly set true to enable the sub-samples only
     * @return the scope settings panel
     */
    protected JPanel createScopePanel(boolean enableVariable, boolean enableParentAndSubsamples, boolean enableSubsamplesOnly) {
        scopePanel = new ScopePanel(enableVariable, enableParentAndSubsamples, enableSubsamplesOnly);
        return scopePanel;
    }
View Full Code Here


     * Create the scope settings panel.
     * @param enableVariable set true to enable the variable panel
     * @return the scope settings panel
     */
    protected JPanel createScopePanel(boolean enableVariable) {
        scopePanel = new ScopePanel(enableVariable);
        return scopePanel;
    }
View Full Code Here

     * Create the scope settings panel.
     * @param enableVariable set true to enable the variable panel
     * @return the scope settings panel
     */
    protected JPanel createScopePanel(boolean enableVariable) {
        scopePanel = new ScopePanel(enableVariable);
        return scopePanel;
    }
View Full Code Here

TOP

Related Classes of org.apache.jmeter.util.ScopePanel

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.