Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
13 | 2 | 0 | 1.000 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 13 | 325 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java |
2 | 13 | 150 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/CategoryTableXYDataset.java |
| |||||
/** * Returns the number of series in the dataset. * * @return The series count. */ public int getSeriesCount() { return this.values.getColumnCount(); } /** * Returns the key for a series. * * @param series the series (zero-based index). * * @return The key for the series. */ public Comparable getSeriesKey(int series) { return this.values.getColumnKey(series); } |
| |||||
/** * Returns the number of series in the collection. * * @return The series count. */ public int getSeriesCount() { return this.values.getColumnCount(); } /** * Returns the key for a series. * * @param series the series index (zero-based). * * @return The key for a series. */ public Comparable getSeriesKey(int series) { return this.values.getColumnKey(series); } |
| |||
/** * Returns the number of series in the dataset. * * @return The series count. */ /** * Returns the number of series in the collection. * * @return The series count. */ public int getSeriesCount() { return this.values.getColumnCount(); } /** * Returns the key for a series. * * @param series the series (zero-based index). * * @return The key for the series. */ /** * Returns the key for a series. * * @param series the series index (zero-based). * * @return The key for a series. */ public Comparable getSeriesKey(int series) { return this.values.getColumnKey(series); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
None |