1 | public void configure(TestElement element) {↵ | | 1 | public void modifyTestElement(TestElement element) {↵
|
2 | super.configure(element);↵ | | 2 | this.configureTestElement(element);↵
|
3 | BarChart bc = (BarChart)element;↵ | | 3 | LineChart bc = (LineChart)element;↵
|
4 | xItems.setText(↵ | | 4 | bc.setXAxis(xItems.getText());↵
|
5 | bc.getXAxis());↵ | | 5 | bc.setYAxis(↵
|
6 | yItems.setText(↵ | | 6 | yItems.getText());↵
|
7 | bc.getYAxis());↵ | | 7 | bc.set↵
|
8 | xAxisLabel.setText(↵ | | 8 | XLabel(xAxisLabel.getText());↵
|
9 | bc.getXLabel());↵ | | 9 | bc.setYLabel(↵
|
10 | yAxisLabel.setText(bc.getYLabel());↵ | | 10 | yAxisLabel.getText(↵
|
11 | caption.setText(bc.getCaption↵ | | 11 | ));↵
|
12 | ());↵ | | 12 | bc.setCaption(caption.getText());↵
|
13 | url.setText(bc.getURL());↵ | | 13 | bc.setURLs(urls.getText());↵
|
14 | | | 14 |
|