1 | public void configure(TestElement element) {↵ | | 1 | public void configure(TestElement element) {↵
|
2 | super.configure(element);↵ | | 2 | super.configure(element);↵
|
3 | Table tb = (Table)element;↵ | | 3 | ↵
|
4 | meanCheck.setSelected(tb.getMean());↵ | | |
|
5 | medianCheck.setSelected(tb.getMedian());↵ | | |
|
6 | maxCheck.setSelected(tb.getMax());↵ | | |
|
7 | minCheck.setSelected(tb.getMin());↵ | | |
|
8 | fiftypercentCheck.setSelected(tb.get50Percent());↵ | | |
|
9 | nintypercentCheck.setSelected(tb.get90Percent());↵ | | |
|
10 | errorRateCheck.setSelected(tb.getErrorRate());↵ | | |
|
11 | responseRateCheck.setSelected(tb.getResponseRate());↵ | | |
|
12 | transferRateCheck.setSelected(tb.getTransferRate↵ | | 4 | LineChart bc = (LineChart)element;↵
|
| | | 5 | xItems.setText(bc.getXAxis());↵
|
| | | 6 | yItems.setText(bc.getYAxis());↵
|
| | | 7 | xAxisLabel.setText(bc.getXLabel());↵
|
| | | 8 | yAxisLabel.setText(bc.getYLabel());↵
|
| | | 9 | caption.setText(bc.getCaption());↵
|
13 | ());↵ | | 10 | urls.setText(bc.getURLs());↵
|
14 | | | 11 |
|