1 | public void modifyTestElement(TestElement element) {↵ | | |
|
2 | this.configureTestElement(element);↵ | | |
|
3 | BarChart bc = (BarChart)element;↵ | | |
|
4 | bc.setXAxis(xItems.getText());↵ | | |
|
5 | bc.setYAxis(yItems.getText());↵ | | |
|
6 | bc.setXLabel(xAxisLabel.getText());↵ | | |
|
7 | bc.setYLabel(yAxisLabel.getText());↵ | | |
|
8 | bc.setCaption(caption.getText());↵ | | |
|
9 | bc.setURL(url.getText↵ | | 1 | if (s instanceof SoapSampler) {↵
|
| | | 2 | SoapSampler sampler = (SoapSampler) s;↵
|
| | | 3 | sampler.setURLData(urlField.getText());↵
|
| | | 4 | sampler.setXmlData(soapXml.getText());↵
|
| | | 5 | sampler.setXmlFile(soapXmlFile.getFilename());↵
|
| | | 6 | sampler.setSOAPAction(soapAction.getText());↵
|
| | | 7 | sampler.setSendSOAPAction(sendSoapAction.isSelected());↵
|
10 | ());↵ | | 8 | sampler.setUseKeepAlive(useKeepAlive.isSelected());↵
|
11 | | | 9 |
|