Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
14 | 2 | 1 | 0.967 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 13 | 440 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/CyclicXYItemRenderer.java |
2 | 14 | 124 | 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.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); } |
| |||||
/** * 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); } |
| |||
/** * 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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18f73cc0]] | delegateSet |
1 | 2 | [[#18f73cc0]] | underlying |