1 | public void modifyTestElement(TestElement s) {↵ | | 1 | public void configure(TestElement element) {↵
|
2 | this.configureTestElement(s);↵ | | 2 | super.configure(element);↵
|
3 | if (s instanceof SoapSampler) {↵ | | 3 | ↵
|
4 | SoapSampler sampler = (SoapSampler) s;↵ | | |
|
5 | sampler.setURLData(url↵ | | 4 | CounterConfig config = (CounterConfig) element;↵
|
6 | Field.getText());↵ | | 5 | startField.setText(↵
|
7 | sampler.setXmlData(soapXml.getText());↵ | | |
|
8 | sampler.setXmlFile(soapXmlFile.getFilename());↵ | | |
|
9 | sampler.setSOAPAction(soapAction.getText());↵ | | |
|
10 | sampler.setSendSOAPAction(sendSoapAction.isSelected());↵ | | |
|
11 | sampler.setUseKeepAlive(useKeepAlive.isSelected↵ | | 6 | config.getStartAsString());↵
|
| | | 7 | endField.setText(config.getEndAsString());↵
|
| | | 8 | incrField.setText(config.getIncrementAsString());↵
|
| | | 9 | formatField.setText(config.getFormat());↵
|
| | | 10 | varNameField.setText(config.getVarName());↵
|
12 | ());↵ | | 11 | perUserField.setSelected(config.isPerUser());↵
|
13 | }↵ | | 12 |
|
14 | | | | |