File path: /jfreechart-1.0.10/src/org/jfree/data/gantt/SlidingGanttCategoryDataset.java | File path: /jfreechart-1.0.10/src/org/jfree/data/gantt/SlidingGanttCategoryDataset.java | |||
Method name: int getSubIntervalCount(Comparable, Comparable)
|
Method name: Number getStartValue(Comparable, Comparable)
|
|||
Number of AST nodes: 5 | Number of AST nodes: 5 | |||
1 | int r = getRowIndex(rowKey);↵ | 1 | int r = getRowIndex(rowKey);↵ | |
2 | int c = getColumnIndex(columnKey);↵ | 2 | int c = getColumnIndex(columnKey);↵ | |
3 | if (c != -1) {↵ | 3 | if (c != -1) {↵ | |
4 | return this.underlying.getSubIntervalCount(r,↵ | 4 | return this.underlying.getS↵ | |
5 | c + this.firstCategoryIndex);↵ | 5 | tartValue(r, c + this.firstCategoryIndex);↵ | |
6 | }↵ | 6 | }↵ | |
7 | else {↵ | 7 | else {↵ | |
8 | throw new UnknownKeyException("Unknown columnKey: " + columnKey);↵ | 8 | throw new UnknownKeyException("Unknown columnKey: " + columnKey);↵ | |
9 | } | 9 |
| |
See real code fragment | See real code fragment |
Number of common nesting structure subtrees | 1 |
Number of refactorable cases | 1 |
Number of non-refactorable cases | 0 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.1 |
Clones location | Clones are declared in the same class |
Number of node comparisons | 13 |
Number of mapped statements | 5 |
Number of unmapped statements in the first code fragment | 0 |
Number of unmapped statements in the second code fragment | 0 |
Time elapsed for statement mapping (ms) | 35.4 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | int r = getRowIndex(rowKey); | 1 | int r = getRowIndex(rowKey); | |||||||||||||
2 | int c = getColumnIndex(columnKey); | 2 | int c = getColumnIndex(columnKey); | |||||||||||||
3 | if (c != -1) | 3 | if (c != -1) | |||||||||||||
4 | return this.underlying.getSubIntervalCount(r, c + this.firstCategoryIndex); |
| 4 | return this.underlying.getStartValue(r, c + this.firstCategoryIndex); | ||||||||||||
else | else | |||||||||||||||
5 | throw new UnknownKeyException("Unknown columnKey: " + columnKey); | 5 | throw new UnknownKeyException("Unknown columnKey: " + columnKey); |
Row | Violation |
---|---|
1 | Expression this.underlying.getSubIntervalCount(r,c + this.firstCategoryIndex) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
2 | Expression this.underlying.getStartValue(r,c + this.firstCategoryIndex) cannot be parameterized, because it has dependencies to/from statements that will be extracted |