1 | public void modifyTestElement(TestElement s) {↵ | | 1 | public void modifyTestElement(TestElement ↵
|
2 | this.configureTestElement(s);↵ | | |
|
3 | if (s instanceof SoapSampler) {↵ | | |
|
4 | SoapSampler sampler = (SoapSampler) s;↵ | | |
|
5 | sampler.setURLData(urlField.getText());↵ | | |
|
6 | sampler.setXmlData(soapXml.getText());↵ | | |
|
7 | sampler.setXmlFile(soapXmlFile.getFilename());↵ | | |
|
8 | sampler.setSOAPAction(soapAction.getText());↵ | | |
|
9 | sampler.setSendSOAPAction(sendSoapAction.isSelected());↵ | | |
|
10 | sampler.setUseKeepAlive(useKeepAlive.isSelected↵ | | 2 | element) {↵
|
| | | 3 | super.configureTestElement(element);↵
|
| | | 4 | ReportPage page = (ReportPage)element;↵
|
| | | 5 | page.setCSS(cssURL.getText());↵
|
| | | 6 | page.setFooterURL(footerURL.getText());↵
|
| | | 7 | page.setHeaderURL(headerURL.getText());↵
|
| | | 8 | page.setIndex(String.valueOf(makeIndex.isSelected()));↵
|
| | | 9 | page.setIntroduction(introduction.getText());↵
|
11 | ());↵ | | 10 | page.setTitle(pageTitle.getText());↵
|
12 | }↵ | | 11 |
|
13 | | | | |