Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
2 | 4 | 1 | 0.957 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 2 | 132 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultOHLCDataset.java |
2 | 2 | 162 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultOHLCDataset.java |
3 | 2 | 192 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultOHLCDataset.java |
4 | 2 | 222 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultOHLCDataset.java |
| |||||
/** * Returns the high value. * * @param series the series index (ignored). * @param item the item index (zero-based). * * @return The high value. */ public Number getHigh(int series, int item) { return this.data[item].getHigh(); } |
| |||||
/** * Returns the low value. * * @param series the series index (ignored). * @param item the item index (zero-based). * * @return The low value. */ public Number getLow(int series, int item) { return this.data[item].getLow(); } |
| |||||
/** * Returns the open value. * * @param series the series index (ignored). * @param item the item index (zero-based). * * @return The open value. */ public Number getOpen(int series, int item) { return this.data[item].getOpen(); } |
| |||||
/** * Returns the close value. * * @param series the series index (ignored). * @param item the item index (zero-based). * * @return The close value. */ public Number getClose(int series, int item) { return this.data[item].getClose(); } |
| |||
/** * Returns the high value. * * @param series the series index (ignored). * @param item the item index (zero-based). * * @return The high value. */ /** * Returns the close value. * * @param series the series index (ignored). * @param item the item index (zero-based). * * @return The close value. */ /** * Returns the open value. * * @param series the series index (ignored). * @param item the item index (zero-based). * * @return The open value. */ /** * Returns the low value. * * @param series the series index (ignored). * @param item the item index (zero-based). * * @return The low value. */ public Number [[#variable18dc5e00]](int series, int item) { return this.data[item]. [[#variable18dc5e00]](); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18dc5e00]] | getHigh |
1 | 2 | [[#18dc5e00]] | getLow |
1 | 3 | [[#18dc5e00]] | getOpen |
1 | 4 | [[#18dc5e00]] | getClose |