CloneSet1297


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
14210.985class_body_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11450
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/function/LineFunction2D.java
21450
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/function/PowerFunction2D.java
Next
Last
Clone Instance
1
Line Count
14
Source Line
50
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/function/LineFunction2D.java

/** The intercept. */
private double a;

/** The slope of the line. */
private double b;

/**
 * Constructs a new line function.
 *
 * @param a  the intercept.
 * @param b  the slope.
 */
public LineFunction2D(double a, double b) {
  this.a = a;
  this.b = b;
}


First
Previous
Clone Instance
2
Line Count
14
Source Line
50
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/function/PowerFunction2D.java

/** The 'a' coefficient. */
private double a;

/** The 'b' coefficient. */
private double b;

/**
 * Creates a new power function.
 *
 * @param a  the 'a' coefficient.
 * @param b  the 'b' coefficient.
 */
public PowerFunction2D(double a, double b) {
  this.a = a;
  this.b = b;
}


Clone AbstractionParameter Count: 1Parameter Bindings

/** The 'a' coefficient. */
/** The intercept. */
private double a;

/** The 'b' coefficient. */
/** The slope of the line. */
private double b;

/**
     * Creates a new power function.
     *
     * @param a  the 'a' coefficient.
     * @param b  the 'b' coefficient.
     */
/**
     * Constructs a new line function.
     *
     * @param a  the intercept.
     * @param b  the slope.
     */
public [[#variable18f272c0]](double a, double b) {
  this.a = a;
  this.b = b;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18f272c0]]
LineFunction2D 
12[[#18f272c0]]
PowerFunction2D