CloneSet1412


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
14210.967class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
113440
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/CyclicXYItemRenderer.java
214124
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYBarDataset.java
Next
Last
Clone Instance
1
Line Count
13
Source Line
440
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/CyclicXYItemRenderer.java

/**
 * Returns the number of series in the dataset.
 * 
 * @return The series count.
 */
public int getSeriesCount() {
  return this.delegateSet.getSeriesCount();
}

/**
 * Returns the name of the given series.
 * 
 * @param series  the series index (zero-based).
 * 
 * @return The series name.
 */
public Comparable getSeriesKey(int series) {
  return this.delegateSet.getSeriesKey(series);
}


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

/**
 * Returns the number of series in the dataset.
 *
 * @return The series count.
 */
public int getSeriesCount() {
  return this.underlying.getSeriesCount();
}

/**
 * Returns the key for a series.
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 *
 * @return The series key.
 */
public Comparable getSeriesKey(int series) {
  return this.underlying.getSeriesKey(series);
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns the number of series in the dataset.
     *
     * @return The series count.
     */
/**
         * Returns the number of series in the dataset.
         * 
         * @return The series count.
         */
public int getSeriesCount() {
  return this. [[#variable18f73cc0]].getSeriesCount();
}

/**
     * Returns the key for a series.
     *
     * @param series  the series index (in the range <code>0</code> to
     *     <code>getSeriesCount() - 1</code>).
     *
     * @return The series key.
     */
/**
         * Returns the name of the given series.
         * 
         * @param series  the series index (zero-based).
         * 
         * @return The series name.
         */
public Comparable getSeriesKey(int series) {
  return this. [[#variable18f73cc0]].getSeriesKey(series);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18f73cc0]]
delegateSet 
12[[#18f73cc0]]
underlying