|
JMeter example source code file (MultipartUrlConfigGui.java)
The JMeter MultipartUrlConfigGui.java source code/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package org.apache.jmeter.protocol.http.config.gui; import java.awt.BorderLayout; import javax.swing.BorderFactory; import javax.swing.BoxLayout; import javax.swing.JPanel; import org.apache.jmeter.protocol.http.gui.HTTPFileArgsPanel; import org.apache.jmeter.testelement.TestElement; import org.apache.jmeter.util.JMeterUtils; public class MultipartUrlConfigGui extends UrlConfigGui { private static final long serialVersionUID = 240L; /** * Files panel that holds file informations to be uploaded by * http request. */ private HTTPFileArgsPanel filesPanel; // used by HttpTestSampleGui public MultipartUrlConfigGui() { super(); init(); } // not currently used public MultipartUrlConfigGui(boolean value) { super(value); init(); } @Override public void modifyTestElement(TestElement sampler) { super.modifyTestElement(sampler); filesPanel.modifyTestElement(sampler); } @Override public void configure(TestElement el) { super.configure(el); filesPanel.configure(el); } private void init() {// called from ctor, so must not be overridable this.setLayout(new BorderLayout()); // WEB REQUEST PANEL JPanel webRequestPanel = new JPanel(); webRequestPanel.setLayout(new BorderLayout()); webRequestPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(), JMeterUtils.getResString("web_request"))); // $NON-NLS-1$ JPanel northPanel = new JPanel(); northPanel.setLayout(new BoxLayout(northPanel, BoxLayout.Y_AXIS)); northPanel.add(getProtocolAndMethodPanel()); northPanel.add(getPathPanel()); webRequestPanel.add(northPanel, BorderLayout.NORTH); webRequestPanel.add(getParameterPanel(), BorderLayout.CENTER); webRequestPanel.add(getHTTPFileArgsPanel(), BorderLayout.SOUTH); this.add(getWebServerTimeoutPanel(), BorderLayout.NORTH); this.add(webRequestPanel, BorderLayout.CENTER); this.add(getProxyServerPanel(), BorderLayout.SOUTH); } private JPanel getHTTPFileArgsPanel() { filesPanel = new HTTPFileArgsPanel(JMeterUtils.getResString("send_file")); // $NON-NLS-1$ return filesPanel; } /** * {@inheritDoc} */ @Override public void clear() { super.clear(); filesPanel.clear(); } } Other JMeter examples (source code examples)Here is a short list of links related to this JMeter MultipartUrlConfigGui.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.