Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
11 | 2 | 2 | 0.971 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 11 | 127 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/AxisState.java |
2 | 11 | 145 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/AxisState.java |
| |||||
/** * Moves the cursor up by the specified number of Java 2D units. * * @param units the units. */ public void cursorUp(double units) { this.cursor = this.cursor - units; } /** * Moves the cursor down by the specified number of Java 2D units. * * @param units the units. */ public void cursorDown(double units) { this.cursor = this.cursor + units; } |
| |||||
/** * Moves the cursor left by the specified number of Java 2D units. * * @param units the units. */ public void cursorLeft(double units) { this.cursor = this.cursor - units; } /** * Moves the cursor right by the specified number of Java 2D units. * * @param units the units. */ public void cursorRight(double units) { this.cursor = this.cursor + units; } |
| |||
/** * Moves the cursor up by the specified number of Java 2D units. * * @param units the units. */ /** * Moves the cursor left by the specified number of Java 2D units. * * @param units the units. */ public void [[#variable18edc120]](double units) { this.cursor = this.cursor - units; } /** * Moves the cursor down by the specified number of Java 2D units. * * @param units the units. */ /** * Moves the cursor right by the specified number of Java 2D units. * * @param units the units. */ public void [[#variable18edc060]](double units) { this.cursor = this.cursor + units; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18edc120]] | cursorUp |
1 | 2 | [[#18edc120]] | cursorLeft |
2 | 1 | [[#18edc060]] | cursorDown |
2 | 2 | [[#18edc060]] | cursorRight |