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