1 | public void configure(TestElement el) {↵ | | 1 | public void modifyTestElement(TestElement element) {↵
|
2 | super.configure(el);↵ | | 2 | this.configure↵
|
3 | SubscriberSampler sampler = (SubscriberSampler) el;↵ | | |
|
4 | useProperties.setSelected(sampler.getUseJNDIPropertiesAsBoolean());↵ | | |
|
5 | jndiICF.setText(sampler.getJNDIInitialContextFactory());↵ | | |
|
6 | urlField.setText(sampler.getProviderUrl());↵ | | |
|
7 | jndiConnFac.setText(sampler.getConnectionFactory↵ | | 3 | TestElement(element);↵
|
| | | 4 | LineChart bc = (LineChart)element;↵
|
| | | 5 | bc.setXAxis(xItems.getText());↵
|
| | | 6 | bc.setYAxis(yItems.getText());↵
|
8 | ());↵ | | 7 | bc.setXLabel(xAxisLabel.getText());↵
|
9 | jmsTopic.setText(sampler.getTopic());↵ | | 8 | ↵
|
10 | jmsUser.setText(sampler.getUsername());↵ | | |
|
11 | jmsPwd.setText(sampler.getPassword());↵ | | |
|
12 | iterations.setText(sampler.getIterations());↵ | | |
|
13 | reqAuth.setText(sampler.getUseAuth());↵ | | |
|
14 | readResponse.setSelected(sampler.getReadResponseAsBoolean());↵ | | |
|
15 | clientChoice.setText(sampler.getClientChoice↵ | | 9 | bc.setYLabel(yAxisLabel.getText());↵
|
| | | 10 | bc.setCaption(caption.getText());↵
|
16 | ());↵ | | 11 | bc.setURLs(urls.getText());↵
|
17 | | | 12 |
|