Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
2 | 3 | 1 | 0.951 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 2 | 201 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimePeriodValues.java |
2 | 2 | 337 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeSeries.java |
3 | 2 | 447 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYSeries.java |
| |||||
/** * Returns one data item for the series. * * @param index the item index (in the range <code>0</code> to * <code>getItemCount() - 1</code>). * * @return One data item for the series. */ public TimePeriodValue getDataItem(int index) { return (TimePeriodValue) this.data.get(index); } |
| |||||
/** * Returns a data item for the series. * * @param index the item index (zero-based). * * @return The data item. * * @see #getDataItem(RegularTimePeriod) */ public TimeSeriesDataItem getDataItem(int index) { return (TimeSeriesDataItem) this.data.get(index); } |
| |||||
/** * Return the data item with the specified index. * * @param index the index. * * @return The data item with the specified index. */ public XYDataItem getDataItem(int index) { return (XYDataItem) this.data.get(index); } |
| |||
/** * Return the data item with the specified index. * * @param index the index. * * @return The data item with the specified index. */ /** * Returns one data item for the series. * * @param index the item index (in the range <code>0</code> to * <code>getItemCount() - 1</code>). * * @return One data item for the series. */ /** * Returns a data item for the series. * * @param index the item index (zero-based). * * @return The data item. * * @see #getDataItem(RegularTimePeriod) */ public [[#variable18f5c6c0]] getDataItem(int index) { return ( [[#variable18f5c6c0]]) this.data.get(index); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18f5c6c0]] | TimePeriodValue |
1 | 2 | [[#18f5c6c0]] | TimeSeriesDataItem |
1 | 3 | [[#18f5c6c0]] | XYDataItem |