1 | public void configure(TestElement element) {↵ | | 1 | public void configure(TestElement element) {↵
|
2 | super.configure(element);↵ | | 2 | super.configure(element);↵
|
3 | CounterConfig config = (CounterConfig) element;↵ | | |
|
4 | startField.setText(config.getStartAsString());↵ | | |
|
5 | endField↵ | | 3 | LineChart bc = (LineChart)element;↵
|
| | | 4 | xItems.setText(bc.getXAxis());↵
|
6 | .setText(config.getEndAsString());↵ | | 5 | yItems.setText(↵
|
7 | incrFi↵ | | 6 | bc.getYAxis());↵
|
8 | eld.setText(config.getIncrementAsString());↵ | | 7 | xAxisLabel.setText(bc.getXLabel());↵
|
9 | formatField.setText(config.getFormat());↵ | | 8 | yAxisLabel.setText(↵
|
10 | varNameField.setText(config.getVarName());↵ | | |
|
11 | perUserField.setSelected(config.isPerUser↵ | | 9 | bc.getYLabel());↵
|
| | | 10 | caption.setText(bc.getCaption());↵
|
12 | ());↵ | | 11 | urls.setText(bc.getURLs());↵
|
13 | | | 12 |
|