1 | public void configure(TestElement element) {↵ | | 1 | public void configure(TestElement element) {↵
|
2 | super.configure(element);↵ | | 2 | super.configure(element);↵
|
3 | LineChart bc = (LineChart)element;↵ | | |
|
4 | xItems↵ | | 3 | BSFSampler sampler = (BSFSampler) element;↵
|
5 | .setText(bc.getXAxis());↵ | | 4 | scriptField.setText(↵
|
6 | yItems.setText(bc.getYAxis());↵ | | |
|
7 | xAxisLabel.setText(bc.getXLabel↵ | | 5 | sampler.getScript());↵
|
8 | ());↵ | | 6 | langField.setSelectedItem(sampler.getScriptLanguage());↵
|
9 | yAxisLabel.setText(bc.getYLabel());↵ | | 7 | filename.setText(sampler.getFilename());↵
|
10 | caption.setText(bc.getCaption());↵ | | 8 | ↵
|
11 | urls.setText(bc.getURLs());↵ | | 9 | parameters.setText(sampler.getParameters());↵
|
12 | | | 10 |
|