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