File path: /jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java | File path: /jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultStatisticalCategoryDataset.java | |||
Method name: void add(BoxAndWhiskerItem, Comparable, Comparable)
|
Method name: void updateBounds()
|
|||
Number of AST nodes: 8 | Number of AST nodes: 8 | |||
1 | if (Double.isNaN(this.maximumRangeValue)) {↵ | 1 | if (Double.isNaN(this.minimumRangeValue)) {↵ | |
2 | this.maximumRangeValue = maxval;↵ | 2 | this.minimumRangeValue = m;↵ | |
3 | this.maximumRangeValueRow = r;↵ | 3 | this.minimumRangeValueRow = r;↵ | |
4 | this.maximumRangeValueColumn = c;↵ | 4 | this.minimumRangeValueColumn = c;↵ | |
5 | }↵ | 5 | ↵ | |
6 | }↵ | |||
6 | else ↵ | 7 | else {↵ | |
7 | if (maxval > this.maximumRangeValue) {↵ | 8 | if (m < this.minimumRangeValue) {↵ | |
8 | this.maximumRangeValue = maxval;↵ | 9 | this.minimumRangeValue = m↵ | |
10 | ;↵ | |||
9 | this.maximumRangeValueRow = r;↵ | 11 | this.minimumRangeValueRow = r;↵ | |
10 | this.maximumRangeValueColumn = c;↵ | 12 | this.minimumRangeValueColumn = c;↵ | |
13 | }↵ | |||
11 | } | 14 | } | |
See real code fragment | See real code fragment |
Number of common nesting structure subtrees | 0 |
Number of refactorable cases | 0 |
Number of non-refactorable cases | 0 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.4 |
Clones location | Clones are in different classes having the same super class |
Number of node comparisons | 2 |