1 | public void configure(TestElement element) {↵ | | |
|
2 | super.configure(element);↵ | | |
|
3 | LineChart bc = (LineChart)element;↵ | | |
|
4 | xItems.setText(bc.getXAxis());↵ | | |
|
5 | yItems.setText(bc.getYAxis());↵ | | |
|
6 | xAxisLabel↵ | | 1 | if (extractor instanceof RegexExtractor) {↵
|
| | | 2 | RegexExtractor regex = (RegexExtractor) extractor;↵
|
| | | 3 | regex.setUseField(group.getSelection().getActionCommand()); ↵
|
| | | 4 | regex.setRefName(refNameField.getText());↵
|
7 | .setText(bc.getXLabel());↵ | | 5 | regex.set↵
|
8 | yAxisLabel.setText(bc.getYLabel());↵ | | |
|
9 | caption.setText(bc.getCaption());↵ | | |
|
10 | urls.setText(bc.getURLs↵ | | 6 | Regex(regexField.getText());↵
|
| | | 7 | regex.setTemplate(templateField.getText());↵
|
| | | 8 | regex.setDefaultValue(defaultField.getText());↵
|
11 | ());↵ | | 9 | regex.setMatchNumber(matchNumberField.getText());↵
|
12 | | | 10 |
|