CloneSet851


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
28220.958class_body_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
126559
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/jdbc/JDBCXYDataset.java
228607
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
Next
Last
Clone Instance
1
Line Count
26
Source Line
559
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/jdbc/JDBCXYDataset.java

/**
 * Returns the minimum y-value in the dataset.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         y-interval is taken into account.
 * 
 * @return The minimum value.
 */
public double getRangeLowerBound(boolean includeInterval) {
  return this.minValue;
}

/**
 * Returns the maximum y-value in the dataset.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         y-interval is taken into account.
 * 
 * @return The maximum value.
 */
public double getRangeUpperBound(boolean includeInterval) {
  return this.maxValue;
}

/**
 * Returns the range of the values in this dataset's range.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         y-interval is taken into account.
 * 
 * @return The range.
 */
public Range getRangeBounds(boolean includeInterval) {
  return new Range(this.minValue, this.maxValue);
}


First
Previous
Clone Instance
2
Line Count
28
Source Line
607
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Returns the minimum y-value in the dataset.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         y-interval is taken into account.
 * 
 * @return The minimum value.
 * 
 * @see #getRangeUpperBound(boolean)
 */
public double getRangeLowerBound(boolean includeInterval) {
  return this.minimumRangeValue;
}

/**
 * Returns the maximum y-value in the dataset.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         y-interval is taken into account.
 * 
 * @return The maximum value.
 * 
 * @see #getRangeLowerBound(boolean)
 */
public double getRangeUpperBound(boolean includeInterval) {
  return this.maximumRangeValue;
}

/**
 * Returns the range of the values in this dataset's range.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         y-interval is taken into account.
 * 
 * @return The range.
 */
public Range getRangeBounds(boolean includeInterval) {
  return new Range(this.minimumRangeValue, this.maximumRangeValue);
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Returns the minimum y-value in the dataset.
     *
     * @param includeInterval  a flag that determines whether or not the
     *                         y-interval is taken into account.
     * 
     * @return The minimum value.
     * 
     * @see #getRangeUpperBound(boolean)
     */
/**
     * Returns the minimum y-value in the dataset.
     *
     * @param includeInterval  a flag that determines whether or not the
     *                         y-interval is taken into account.
     * 
     * @return The minimum value.
     */
public double getRangeLowerBound(boolean includeInterval) {
  return this. [[#variable18dacce0]];
}

/**
     * Returns the maximum y-value in the dataset.
     *
     * @param includeInterval  a flag that determines whether or not the
     *                         y-interval is taken into account.
     * 
     * @return The maximum value.
     * 
     * @see #getRangeLowerBound(boolean)
     */
/**
     * Returns the maximum y-value in the dataset.
     *
     * @param includeInterval  a flag that determines whether or not the
     *                         y-interval is taken into account.
     * 
     * @return The maximum value.
     */
public double getRangeUpperBound(boolean includeInterval) {
  return this. [[#variable18dacca0]];
}

/**
     * Returns the range of the values in this dataset's range.
     *
     * @param includeInterval  a flag that determines whether or not the
     *                         y-interval is taken into account.
     * 
     * @return The range.
     */
public Range getRangeBounds(boolean includeInterval) {
  return new Range(this. [[#variable18dacce0]], this. [[#variable18dacca0]]);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18dacce0]]
minValue 
12[[#18dacce0]]
minimumRangeValue 
21[[#18dacca0]]
maxValue 
22[[#18dacca0]]
maximumRangeValue