1 | public void configure(TestElement el) {↵ | | 1 | public void configure(TestElement element) {↵
|
2 | super.configure(el);↵ | | 2 | super.configure(element);↵
|
3 | SoapSampler sampler = (SoapSampler) el;↵ | | 3 | ↵
|
4 | urlField.setText(sampler.getURLData↵ | | 4 | CounterConfig config = (CounterConfig) element;↵
|
5 | ());↵ | | 5 | startField.setText(config.getStartAsString());↵
|
6 | sendSoapAction.setSelected(sampler.getSendSOAPAction());↵ | | 6 | end↵
|
7 | soapAction.setText(sampler.getSOAPAction());↵ | | |
|
8 | soapXml↵ | | 7 | Field.setText(config.getEndAsString());↵
|
| | | 8 | incrField.setText(config.getIncrementAsString());↵
|
9 | .setText(sampler.getXmlData());↵ | | 9 | formatField.setText(config.getFormat());↵
|
10 | soapXmlFile.setFilename(sampler.getXmlFile());↵ | | |
|
11 | useKeepAlive.setSelected(sampler.getUseKeepAlive↵ | | 10 | varNameField.setText(config.getVarName());↵
|
12 | ());↵ | | 11 | perUserField.setSelected(config.isPerUser());↵
|
13 | | | 12 |
|