CloneSet1235


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11220.971class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
111127
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/AxisState.java
211145
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/AxisState.java
Next
Last
Clone Instance
1
Line Count
11
Source Line
127
Source File
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;
}


First
Previous
Clone Instance
2
Line Count
11
Source Line
145
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/AxisState.java

/**
 * 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;
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18edc120]]
cursorUp 
12[[#18edc120]]
cursorLeft 
21[[#18edc060]]
cursorDown 
22[[#18edc060]]
cursorRight