CloneSet276


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
40310.987class_body_declarations[4]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
140267
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/CategoryTableXYDataset.java
240564
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultTableXYDataset.java
342432
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeriesCollection.java
Next
Last
Clone Instance
1
Line Count
40
Source Line
267
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/CategoryTableXYDataset.java

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

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

/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 *
 * @return The range.
 */
public Range getDomainBounds(boolean includeInterval) {
  if (includeInterval) {
    return this.intervalDelegate.getDomainBounds(includeInterval);
  }
  else {
    return DatasetUtilities.iterateDomainBounds(this, includeInterval);
  }
}

/**
 * Returns the interval position factor.
 *
 * @return The interval position factor.
 */
public double getIntervalPositionFactor() {
  return this.intervalDelegate.getIntervalPositionFactor();
}


Next
Previous
Clone Instance
2
Line Count
40
Source Line
564
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultTableXYDataset.java

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

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

/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 *
 * @return The range.
 */
public Range getDomainBounds(boolean includeInterval) {
  if (includeInterval) {
    return this.intervalDelegate.getDomainBounds(includeInterval);
  }
  else {
    return DatasetUtilities.iterateDomainBounds(this, includeInterval);
  }
}

/**
 * Returns the interval position factor.
 *
 * @return The interval position factor.
 */
public double getIntervalPositionFactor() {
  return this.intervalDelegate.getIntervalPositionFactor();
}


First
Previous
Clone Instance
3
Line Count
42
Source Line
432
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeriesCollection.java

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

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

/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 *
 * @return The range.
 */
public Range getDomainBounds(boolean includeInterval) {
  if (includeInterval) {
    return this.intervalDelegate.getDomainBounds(includeInterval);
  }
  else {
    return DatasetUtilities.iterateDomainBounds(this, includeInterval);
  }
}

/**
 * Returns the interval width. This is used to calculate the start and end
 * x-values, if/when the dataset is used as an {@link IntervalXYDataset}.
 *
 * @return The interval width.
 */
public double getIntervalWidth() {
  return this.intervalDelegate.getIntervalWidth();
}


Clone AbstractionParameter Count: 1Parameter Bindings

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

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

/**
     * Returns the range of the values in this dataset's domain.
     *
     * @param includeInterval  a flag that determines whether or not the
     *                         x-interval is taken into account.
     *
     * @return The range.
     */
public Range getDomainBounds(boolean includeInterval) {
  if (includeInterval) {
    return this.intervalDelegate.getDomainBounds(includeInterval);
  }
  else {
    return DatasetUtilities.iterateDomainBounds(this, includeInterval);
  }
}

/**
     * Returns the interval position factor.
     *
     * @return The interval position factor.
     */
/**
     * Returns the interval width. This is used to calculate the start and end
     * x-values, if/when the dataset is used as an {@link IntervalXYDataset}.
     *
     * @return The interval width.
     */
public double  [[#variable1a8944c0]]() {
  return this.intervalDelegate. [[#variable1a8944c0]]();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a8944c0]]
getIntervalPositionFactor 
12[[#1a8944c0]]
getIntervalPositionFactor 
13[[#1a8944c0]]
getIntervalWidth