1 | public void configure(TestElement element) {↵ | | 1 | public void configure(TestElement element) {↵
|
2 | super.configure(element);↵ | | 2 | super.configure(element);↵
|
3 | ReportPage page = (ReportPage)element;↵ | | 3 | LineChart bc = (LineChart)element;↵
|
4 | cssURL.setText(page.getCSS());↵ | | 4 | xItems.setText(bc.getXAxis());↵
|
5 | footerURL.setText(page.getFooterURL());↵ | | 5 | yItems.setText(bc.getYAxis());↵
|
6 | headerURL.setText(page.getHeaderURL());↵ | | 6 | xAxisLabel.setText(bc.getXLabel());↵
|
7 | makeIndex.setSelected(page.getIndex());↵ | | 7 | yAxisLabel.setText(bc.getYLabel());↵
|
8 | introduction.setText(page.getIntroduction());↵ | | 8 | caption.setText(bc.getCaption());↵
|
9 | pageTitle.setText(page.getTitle());↵ | | 9 | urls.setText(bc.getURLs());↵
|
10 | | | 10 |
|