File path: /jfreechart-1.0.10/src/org/jfree/data/time/Quarter.java | File path: /jfreechart-1.0.10/src/org/jfree/data/time/Week.java | |||
Method name: int compareTo(Object)
|
Method name: int compareTo(Object)
|
|||
Number of AST nodes: 10 | Number of AST nodes: 10 | |||
1 | int result;↵ | 1 | int result;↵ | |
2 | // CASE 1 : Comparing to another Quarter object↵ | 2 | // CASE 1 : Comparing to another Week object↵ | |
3 | // --------------------------------------------↵ | 3 | // --------------------------------------------↵ | |
4 | if (o1 instanceof Quarter) {↵ | 4 | if (o1 instanceof Week) {↵ | |
5 | Quarter q = (Quarter) o1;↵ | 5 | Week w = (Week) o1;↵ | |
6 | result = this.year - q.getYearValue();↵ | 6 | result = this.year - w.getYear().getYear();↵ | |
7 | if (result == 0) {↵ | 7 | if (result == 0) {↵ | |
8 | result = this.quarter - q.getQuarter();↵ | 8 | result = this.week - w.getWeek();↵ | |
9 | }↵ | 9 | }↵ | |
10 | }↵ | 10 | }↵ | |
11 | // CASE 2 : Comparing to another TimePeriod object↵ | 11 | // CASE 2 : Comparing to another TimePeriod object↵ | |
12 | // -----------------------------------------------↵ | 12 | // -----------------------------------------------↵ | |
13 | else if (o1 instanceof RegularTimePeriod) {↵ | 13 | else if (o1 instanceof RegularTimePeriod) {↵ | |
14 | // more difficult case - evaluate later...↵ | 14 | // more difficult case - evaluate later...↵ | |
15 | result = 0;↵ | 15 | result = 0;↵ | |
16 | }↵ | 16 | }↵ | |
17 | // CASE 3 : Comparing to a non-TimePeriod object↵ | 17 | // CASE 3 : Comparing to a non-TimePeriod object↵ | |
18 | // ---------------------------------------------↵ | 18 | // ---------------------------------------------↵ | |
19 | else {↵ | 19 | else {↵ | |
20 | // consider time periods to be ordered after general objects↵ | 20 | // consider time periods to be ordered after general objects↵ | |
21 | result = 1;↵ | 21 | result = 1;↵ | |
22 | }↵ | 22 | }↵ | |
23 | return result; | 23 |
| |
See real code fragment | See real code fragment |
Number of common nesting structure subtrees | 1 |
Number of refactorable cases | 0 |
Number of non-refactorable cases | 1 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.3 |
Clones location | Clones are in different classes having the same super class |
Number of node comparisons | 26 |
Number of mapped statements | 10 |
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) | 4.7 |
Clone type | Type 2 |
ID | Statement | ID | Statement | |||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | int result; | 1 | int result; | |||||||||||||||||||||||
2 | if (o1 instanceof Quarter) |
| 2 | if (o1 instanceof Week) | ||||||||||||||||||||||
3 | Quarter q = (Quarter)o1; |
| 3 | Week w = (Week)o1; | ||||||||||||||||||||||
4 | result = this.year - q.getYearValue(); |
| 4 | result = this.year - w.getYear().getYear(); | ||||||||||||||||||||||
5 | if (result == 0) | 5 | if (result == 0) | |||||||||||||||||||||||
6 | result = this.quarter - q.getQuarter(); |
| 6 | result = this.week - w.getWeek(); | ||||||||||||||||||||||
7 | else if (o1 instanceof RegularTimePeriod) | 7 | else if (o1 instanceof RegularTimePeriod) | |||||||||||||||||||||||
8 | result = 0; | 8 | result = 0; | |||||||||||||||||||||||
else | else | |||||||||||||||||||||||||
9 | result = 1; | 9 | result = 1; | |||||||||||||||||||||||
10 | return result; | 10 | return result; |
Row | Violation |
---|---|
1 | Expression (Quarter)o1 cannot be parameterized, because it has dependencies to/from statements that will be extracted |
2 | Expression (Week)o1 cannot be parameterized, because it has dependencies to/from statements that will be extracted |
3 | Expression q.getYearValue() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
4 | Expression w.getYear().getYear() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
5 | Expression q cannot be parameterized, because it has dependencies to/from statements that will be extracted |
6 | Expression w.getYear() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
7 | Expression q cannot be unified with expression w.getYear() , because common superclass org.jfree.data.time.RegularTimePeriod does not declare member(s) public int getYearValue() , public int getYear() |
8 | Expression q.getQuarter() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
9 | Expression w.getWeek() cannot be parameterized, because it has dependencies to/from statements that will be extracted |
10 | Expression q cannot be unified with expression w , because common superclass org.jfree.data.time.RegularTimePeriod does not declare member(s) public int getQuarter() , public int getWeek() |