CloneSet483


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
43201.000class_body_declarations[5]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
143317
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/CategoryTableXYDataset.java
244614
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultTableXYDataset.java
Next
Last
Clone Instance
1
Line Count
43
Source Line
317
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/CategoryTableXYDataset.java

/**
 * Sets the interval position factor. Must be between 0.0 and 1.0 inclusive.
 * If the factor is 0.5, the gap is in the middle of the x values. If it
 * is lesser than 0.5, the gap is farther to the left and if greater than
 * 0.5 it gets farther to the right.
 *
 * @param d  the new interval position factor.
 */
public void setIntervalPositionFactor(double d) {
  this.intervalDelegate.setIntervalPositionFactor(d);
  fireDatasetChanged();
}

/**
 * Returns the full interval width.
 *
 * @return The interval width to use.
 */
public double getIntervalWidth() {
  return this.intervalDelegate.getIntervalWidth();
}

/**
 * Sets the interval width to a fixed value, and sends a
 * {@link DatasetChangeEvent} to all registered listeners.
 *
 * @param d  the new interval width (must be > 0).
 */
public void setIntervalWidth(double d) {
  this.intervalDelegate.setFixedIntervalWidth(d);
  fireDatasetChanged();
}

/**
 * Returns whether the interval width is automatically calculated or not.
 *
 * @return whether the width is automatically calculated or not.
 */
public boolean isAutoWidth() {
  return this.intervalDelegate.isAutoWidth();
}

/**
 * Sets the flag that indicates whether the interval width is automatically
 * calculated or not.
 *
 * @param b  the flag.
 */
public void setAutoWidth(boolean b) {
  this.intervalDelegate.setAutoWidth(b);
  fireDatasetChanged();
}


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

/**
 * Sets the interval position factor. Must be between 0.0 and 1.0 inclusive.
 * If the factor is 0.5, the gap is in the middle of the x values. If it
 * is lesser than 0.5, the gap is farther to the left and if greater than
 * 0.5 it gets farther to the right.
 *
 * @param d the new interval position factor.
 */
public void setIntervalPositionFactor(double d) {
  this.intervalDelegate.setIntervalPositionFactor(d);
  fireDatasetChanged();
}

/**
 * returns the full interval width.
 *
 * @return The interval width to use.
 */
public double getIntervalWidth() {
  return this.intervalDelegate.getIntervalWidth();
}

/**
 * Sets the interval width to a fixed value, and sends a
 * {@link DatasetChangeEvent} to all registered listeners.
 *
 * @param d  the new interval width (must be > 0).
 */
public void setIntervalWidth(double d) {
  this.intervalDelegate.setFixedIntervalWidth(d);
  fireDatasetChanged();
}

/**
 * Returns whether the interval width is automatically calculated or not.
 *
 * @return A flag that determines whether or not the interval width is
 *         automatically calculated.
 */
public boolean isAutoWidth() {
  return this.intervalDelegate.isAutoWidth();
}

/**
 * Sets the flag that indicates whether the interval width is automatically
 * calculated or not.
 *
 * @param b  a boolean.
 */
public void setAutoWidth(boolean b) {
  this.intervalDelegate.setAutoWidth(b);
  fireDatasetChanged();
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Sets the interval position factor. Must be between 0.0 and 1.0 inclusive.
     * If the factor is 0.5, the gap is in the middle of the x values. If it
     * is lesser than 0.5, the gap is farther to the left and if greater than
     * 0.5 it gets farther to the right.
     *
     * @param d  the new interval position factor.
     */
/**
     * Sets the interval position factor. Must be between 0.0 and 1.0 inclusive.
     * If the factor is 0.5, the gap is in the middle of the x values. If it
     * is lesser than 0.5, the gap is farther to the left and if greater than
     * 0.5 it gets farther to the right.
     *
     * @param d the new interval position factor.
     */
public void setIntervalPositionFactor(double d) {
  this.intervalDelegate.setIntervalPositionFactor(d);
  fireDatasetChanged();
}

/**
     * Returns the full interval width.
     *
     * @return The interval width to use.
     */
/**
     * returns the full interval width.
     *
     * @return The interval width to use.
     */
public double getIntervalWidth() {
  return this.intervalDelegate.getIntervalWidth();
}

/**
     * Sets the interval width to a fixed value, and sends a
     * {@link DatasetChangeEvent} to all registered listeners.
     *
     * @param d  the new interval width (must be > 0).
     */
public void setIntervalWidth(double d) {
  this.intervalDelegate.setFixedIntervalWidth(d);
  fireDatasetChanged();
}

/**
     * Returns whether the interval width is automatically calculated or not.
     *
     * @return whether the width is automatically calculated or not.
     */
/**
     * Returns whether the interval width is automatically calculated or not.
     *
     * @return A flag that determines whether or not the interval width is
     *         automatically calculated.
     */
public boolean isAutoWidth() {
  return this.intervalDelegate.isAutoWidth();
}

/**
     * Sets the flag that indicates whether the interval width is automatically
     * calculated or not.
     *
     * @param b  the flag.
     */
/**
     * Sets the flag that indicates whether the interval width is automatically
     * calculated or not.
     *
     * @param b  a boolean.
     */
public void setAutoWidth(boolean b) {
  this.intervalDelegate.setAutoWidth(b);
  fireDatasetChanged();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None