CloneSet1675


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
15201.000class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
115303
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java
214170
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/CategoryTableXYDataset.java
Next
Last
Clone Instance
1
Line Count
15
Source Line
303
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java

/**
 * Returns the number of items in ALL series.
 *
 * @return The item count.
 */
public int getItemCount() {
  return this.values.getRowCount();
}

/**
 * Returns the number of items in a series.  This is the same value
 * that is returned by {@link #getItemCount()} since all series
 * share the same x-values (time periods).
 *
 * @param series  the series (zero-based index, ignored).
 *
 * @return The number of items within the series.
 */
public int getItemCount(int series) {
  return getItemCount();
}


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

/**
 * Returns the number of x values in the dataset.
 *
 * @return The item count.
 */
public int getItemCount() {
  return this.values.getRowCount();
}

/**
 * Returns the number of items in the specified series.
 * Returns the same as {@link CategoryTableXYDataset#getItemCount()}.
 *
 * @param series  the series index (zero-based).
 *
 * @return The item count.
 */
public int getItemCount(int series) {
  return getItemCount(); // all series have the same number of items in
// this dataset
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Returns the number of items in ALL series.
     *
     * @return The item count.
     */
/**
     * Returns the number of x values in the dataset.
     *
     * @return The item count.
     */
public int getItemCount() {
  return this.values.getRowCount();
}

/**
     * Returns the number of items in a series.  This is the same value
     * that is returned by {@link #getItemCount()} since all series
     * share the same x-values (time periods).
     *
     * @param series  the series (zero-based index, ignored).
     *
     * @return The number of items within the series.
     */
/**
     * Returns the number of items in the specified series.
     * Returns the same as {@link CategoryTableXYDataset#getItemCount()}.
     *
     * @param series  the series index (zero-based).
     *
     * @return The item count.
     */
public int getItemCount(int series) {
  return getItemCount(); // all series have the same number of items in
// this dataset
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None