File path: /jfreechart-1.0.10/src/org/jfree/data/time/Hour.java | File path: /jfreechart-1.0.10/src/org/jfree/data/time/Minute.java | |||
Method name: RegularTimePeriod next()
|
Method name: RegularTimePeriod previous()
|
|||
Number of AST nodes: 8 | Number of AST nodes: 8 | |||
1 | Hour result;↵ | 1 | Minute result;↵ | |
2 | if (this.hour != LAST_HOUR_IN_DAY) {↵ | 2 | if (this.minute != FIRST_MINUTE_IN_HOUR) {↵ | |
3 | result = new Hour(this.hour + 1, this.day);↵ | 3 | result = new ↵ | |
4 | }↵ | |||
5 | else { // we are at the last hour in the day...↵ | |||
6 | Day nextDay = (Day) this.day.next↵ | 4 | Minute(this.minute - 1, getHour());↵ | |
5 | }↵ | |||
6 | else {↵ | |||
7 | ();↵ | 7 | Hour h = (Hour) getHour().previous();↵ | |
8 | if (nextDay != null) {↵ | 8 | if (h != null) {↵ | |
9 | result = new Hour(FIRST_HOUR_IN_DAY, nextDay);↵ | 9 | result = new Minute(LAST_MINUTE_IN_HOUR, h);↵ | |
10 | }↵ | 10 | }↵ | |
11 | else {↵ | 11 | else {↵ | |
12 | result = null;↵ | 12 | result = null;↵ | |
13 | }↵ | 13 | }↵ | |
14 | }↵ | 14 | }↵ | |
15 | return result; | 15 |
| |
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.4 |
Clones location | Clones are in different classes having the same super class |
Number of node comparisons | 22 |
Number of mapped statements | 8 |
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) | 13.3 |
Clone type | Type 2 |
ID | Statement | ID | Statement | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | Hour result; |
| 1 | Minute result; | |||||||||||||||||||||||||||||||
2 | if (this.hour != LAST_HOUR_IN_DAY) |
| 2 | if (this.minute != FIRST_MINUTE_IN_HOUR) | |||||||||||||||||||||||||||||||
3 | result = new Hour(this.hour + 1, this.day); |
| 3 | result = new Minute(this.minute - 1, getHour()); | |||||||||||||||||||||||||||||||
else | else | ||||||||||||||||||||||||||||||||||
4 | Day nextDay = (Day)this.day.next(); |
| 4 | Hour h = (Hour)getHour().previous(); | |||||||||||||||||||||||||||||||
5 | if (nextDay != null) |
| 5 | if (h != null) | |||||||||||||||||||||||||||||||
6 | result = new Hour(FIRST_HOUR_IN_DAY, nextDay); |
| 6 | result = new Minute(LAST_MINUTE_IN_HOUR, h); | |||||||||||||||||||||||||||||||
else | else | ||||||||||||||||||||||||||||||||||
7 | result = null; |
| 7 | result = null; | |||||||||||||||||||||||||||||||
8 | return result; |
| 8 | return result; |
Row | Violation |
---|---|
1 | Expression new Hour(this.hour + 1,this.day) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
2 | Expression new Minute(this.minute - 1,getHour()) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
3 | Expression this.hour + 1 cannot be parameterized, because it has dependencies to/from statements that will be extracted |
4 | Expression this.minute - 1 cannot be parameterized, because it has dependencies to/from statements that will be extracted |
5 | Expression getHour() is a method call throwing exception(s) that should be caught by a try block that will be extracted |
6 | Expression (Hour)getHour().previous() is a method call throwing exception(s) that should be caught by a try block that will be extracted |
7 | Expression getHour().previous() is a method call throwing exception(s) that should be caught by a try block that will be extracted |
8 | Expression getHour() is a method call throwing exception(s) that should be caught by a try block that will be extracted |
9 | Expression new Hour(FIRST_HOUR_IN_DAY,nextDay) cannot be parameterized, because it has dependencies to/from statements that will be extracted |
10 | Expression new Minute(LAST_MINUTE_IN_HOUR,h) cannot be parameterized, because it has dependencies to/from statements that will be extracted |