CloneSet2057


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

/**
 * Sets the axis range and sends an {@link AxisChangeEvent} to all
 * registered listeners.  As a side-effect, the auto-range flag is set to
 * <code>false</code>.
 *
 * @param lower  the lower axis limit.
 * @param upper  the upper axis limit.
 *
 * @see #getRange()
 * @see #setRange(Range)
 */
public void setRange(double lower, double upper) {
  setRange(new Range(lower, upper));
}


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

/**
 * Sets the axis range (after first adding the current margins to the
 * range) and sends an {@link AxisChangeEvent} to all registered listeners.
 * As a side-effect, the auto-range flag is set to <code>false</code>.
 *
 * @param lower  the lower axis limit.
 * @param upper  the upper axis limit.
 */
public void setRangeWithMargins(double lower, double upper) {
  setRangeWithMargins(new Range(lower, upper));
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Sets the axis range (after first adding the current margins to the
     * range) and sends an {@link AxisChangeEvent} to all registered listeners.
     * As a side-effect, the auto-range flag is set to <code>false</code>.
     *
     * @param lower  the lower axis limit.
     * @param upper  the upper axis limit.
     */
/**
     * Sets the axis range and sends an {@link AxisChangeEvent} to all
     * registered listeners.  As a side-effect, the auto-range flag is set to
     * <code>false</code>.
     *
     * @param lower  the lower axis limit.
     * @param upper  the upper axis limit.
     *
     * @see #getRange()
     * @see #setRange(Range)
     */
public void [[#variable1a111820]](double lower, double upper) {
   [[#variable1a111820]](new Range(lower, upper));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a111820]]
setRange 
12[[#1a111820]]
setRangeWithMargins