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;↵ | | 3 | ReportPage page = (ReportPage)element;↵
|
4 | xItems.setText(bc.getXAxis());↵ | | 4 | cssURL.setText(page.getCSS());↵
|
5 | yItems.setText(bc.getYAxis());↵ | | 5 | footerURL.setText(page.getFooterURL());↵
|
6 | xAxisLabel.setText(bc.getXLabel());↵ | | 6 | headerURL.setText(page.getHeaderURL());↵
|
7 | yAxisLabel.setText(bc.getYLabel());↵ | | 7 | makeIndex.setSelected(page.getIndex());↵
|
8 | caption.setText(bc.getCaption());↵ | | 8 | introduction.setText(page.getIntroduction());↵
|
9 | url.setText(bc.getURL());↵ | | 9 | pageTitle.setText(page.getTitle());↵
|
10 | | | 10 |
|