CloneSet1399


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6210.983method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
18651
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/category/DefaultIntervalCategoryDataset.java
26808
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/category/DefaultIntervalCategoryDataset.java
Next
Last
Clone Instance
1
Line Count
8
Source Line
651
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/category/DefaultIntervalCategoryDataset.java

/**
 * Returns a list of the series in the dataset.  This method supports the 
 * {@link CategoryDataset} interface.
 *
 * @return A list of the series in the dataset.
 * 
 * @see #getColumnKeys()
 */
public List getRowKeys() {
  // the CategoryDataset interface expects a list of series, but
  // we've stored them in an array...
  if (this.seriesKeys == null) {
    return new java.util.ArrayList();
  }
  else {
    return Collections.unmodifiableList(Arrays.asList(this.seriesKeys));
  }
}


First
Previous
Clone Instance
2
Line Count
6
Source Line
808
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/category/DefaultIntervalCategoryDataset.java

/**
 * Returns a list of the series in the dataset.
 *
 * @return A list of the series in the dataset.
 * 
 * @deprecated Use {@link #getRowKeys()} instead.
 */
public List getSeries() {
  if (this.seriesKeys == null) {
    return new java.util.ArrayList();
  }
  else {
    return Collections.unmodifiableList(Arrays.asList(this.seriesKeys));
  }
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns a list of the series in the dataset.
     *
     * @return A list of the series in the dataset.
     * 
     * @deprecated Use {@link #getRowKeys()} instead.
     */
/**
     * Returns a list of the series in the dataset.  This method supports the 
     * {@link CategoryDataset} interface.
     *
     * @return A list of the series in the dataset.
     * 
     * @see #getColumnKeys()
     */
public List  [[#variable18f67400]]() {
  // the CategoryDataset interface expects a list of series, but
  // we've stored them in an array...
  if (this.seriesKeys == null) {
    return new java.util.ArrayList();
  }
  else {
    return Collections.unmodifiableList(Arrays.asList(this.seriesKeys));
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18f67400]]
getRowKeys 
12[[#18f67400]]
getSeries