CloneSet2138


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
2210.973method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12293
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/LogAxis.java
22125
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/util/LogFormat.java
Next
Last
Clone Instance
1
Line Count
2
Source Line
293
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/axis/LogAxis.java

/**
 * Calculates the log of the given value, using the current base.
 * 
 * @param value  the value.
 * 
 * @return The log of the given value.
 * 
 * @see #calculateValue(double)
 * @see #getBase()
 */
public double calculateLog(double value) {
  return Math.log(value) / this.baseLog;
}


First
Previous
Clone Instance
2
Line Count
2
Source Line
125
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/util/LogFormat.java

/**
 * Calculates the log of a given value.
 * 
 * @param value  the value.
 * 
 * @return The log of the value.
 */
private double calculateLog(double value) {
  return Math.log(value) / this.baseLog;
}


Clone AbstractionParameter Count: 1Parameter Bindings

 [[#variable1a11b880]]double calculateLog(double value) {
  return Math.log(value) / this.baseLog;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a11b880]]
/**
 * Calculates the log of the given value, using the current base.
 * 
 * @param value  the value.
 * 
 * @return The log of the given value.
 * 
 * @see #calculateValue(double)
 * @see #getBase()
 */
public 
12[[#1a11b880]]
/**
 * Calculates the log of a given value.
 * 
 * @param value  the value.
 * 
 * @return The log of the value.
 */
private