Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
7 | 4 | 2 | 0.964 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 7 | 90 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCItem.java |
2 | 7 | 105 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCItem.java |
3 | 7 | 120 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCItem.java |
4 | 7 | 135 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCItem.java |
| |||||
/** * Returns the open value. * * @return The open value. */ public double getOpenValue() { OHLC ohlc = (OHLC) getObject(); if (ohlc != null) { return ohlc.getOpen(); } else { return Double.NaN; } } |
| |||||
/** * Returns the high value. * * @return The high value. */ public double getHighValue() { OHLC ohlc = (OHLC) getObject(); if (ohlc != null) { return ohlc.getHigh(); } else { return Double.NaN; } } |
| |||||
/** * Returns the low value. * * @return The low value. */ public double getLowValue() { OHLC ohlc = (OHLC) getObject(); if (ohlc != null) { return ohlc.getLow(); } else { return Double.NaN; } } |
| |||||
/** * Returns the close value. * * @return The close value. */ public double getCloseValue() { OHLC ohlc = (OHLC) getObject(); if (ohlc != null) { return ohlc.getClose(); } else { return Double.NaN; } } |
| |||
/** * Returns the close value. * * @return The close value. */ /** * Returns the low value. * * @return The low value. */ /** * Returns the high value. * * @return The high value. */ /** * Returns the open value. * * @return The open value. */ public double [[#variable18d012c0]]() { OHLC ohlc = (OHLC) getObject(); if (ohlc != null) { return ohlc. [[#variable18d01340]](); } else { return Double.NaN; } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18d012c0]] | getOpenValue |
1 | 2 | [[#18d012c0]] | getHighValue |
1 | 3 | [[#18d012c0]] | getLowValue |
1 | 4 | [[#18d012c0]] | getCloseValue |
2 | 1 | [[#18d01340]] | getOpen |
2 | 2 | [[#18d01340]] | getHigh |
2 | 3 | [[#18d01340]] | getLow |
2 | 4 | [[#18d01340]] | getClose |