CloneSet706


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7420.964method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1790
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCItem.java
27105
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCItem.java
37120
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCItem.java
47135
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCItem.java
Next
Last
Clone Instance
1
Line Count
7
Source Line
90
Source File
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;
  }
}


Next
Previous
Clone Instance
2
Line Count
7
Source Line
105
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCItem.java

/**
 * 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;
  }
}


Next
Previous
Clone Instance
3
Line Count
7
Source Line
120
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCItem.java

/**
 * 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;
  }
}


First
Previous
Clone Instance
4
Line Count
7
Source Line
135
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCItem.java

/**
 * 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;
  }
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18d012c0]]
getOpenValue 
12[[#18d012c0]]
getHighValue 
13[[#18d012c0]]
getLowValue 
14[[#18d012c0]]
getCloseValue 
21[[#18d01340]]
getOpen 
22[[#18d01340]]
getHigh 
23[[#18d01340]]
getLow 
24[[#18d01340]]
getClose