Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
11 | 3 | 2 | 0.958 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 11 | 237 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/FixedMillisecond.java |
2 | 11 | 257 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/FixedMillisecond.java |
3 | 11 | 277 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/FixedMillisecond.java |
| |||||
/** * Returns the first millisecond of the time period. * * @param calendar the calendar. * * @return The first millisecond of the time period. */ public long getFirstMillisecond(Calendar calendar) { return this.time; } /** * Returns the last millisecond of the time period. * * @return The last millisecond of the time period. */ public long getLastMillisecond() { return this.time; } |
| |||||
/** * Returns the last millisecond of the time period. * * @param calendar the calendar. * * @return The last millisecond of the time period. */ public long getLastMillisecond(Calendar calendar) { return this.time; } /** * Returns the millisecond closest to the middle of the time period. * * @return The millisecond closest to the middle of the time period. */ public long getMiddleMillisecond() { return this.time; } |
| |||||
/** * Returns the millisecond closest to the middle of the time period. * * @param calendar the calendar. * * @return The millisecond closest to the middle of the time period. */ public long getMiddleMillisecond(Calendar calendar) { return this.time; } /** * Returns a serial index number for the millisecond. * * @return The serial index number. */ public long getSerialIndex() { return this.time; } |
| |||
/** * Returns the first millisecond of the time period. * * @param calendar the calendar. * * @return The first millisecond of the time period. */ /** * Returns the last millisecond of the time period. * * @param calendar the calendar. * * @return The last millisecond of the time period. */ /** * Returns the millisecond closest to the middle of the time period. * * @param calendar the calendar. * * @return The millisecond closest to the middle of the time period. */ public long [[#variable18ebc960]](Calendar calendar) { return this.time; } /** * Returns the last millisecond of the time period. * * @return The last millisecond of the time period. */ /** * Returns the millisecond closest to the middle of the time period. * * @return The millisecond closest to the middle of the time period. */ /** * Returns a serial index number for the millisecond. * * @return The serial index number. */ public long [[#variable18ebc7e0]]() { return this.time; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18ebc960]] | getFirstMillisecond |
1 | 2 | [[#18ebc960]] | getLastMillisecond |
1 | 3 | [[#18ebc960]] | getMiddleMillisecond |
2 | 1 | [[#18ebc7e0]] | getLastMillisecond |
2 | 2 | [[#18ebc7e0]] | getMiddleMillisecond |
2 | 3 | [[#18ebc7e0]] | getSerialIndex |