CloneSet356


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4410.978method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14217
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java
24243
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java
34269
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java
44295
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java
Next
Last
Clone Instance
1
Line Count
4
Source Line
217
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java

/**
 * Returns the open-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The open-value.
 */
public double getOpenValue(int series, int item) {
  OHLCSeries s = (OHLCSeries) this.data.get(series);
  OHLCItem di = (OHLCItem) s.getDataItem(item);
  return di.getOpenValue();
}


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

/**
 * Returns the close-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The close-value.
 */
public double getCloseValue(int series, int item) {
  OHLCSeries s = (OHLCSeries) this.data.get(series);
  OHLCItem di = (OHLCItem) s.getDataItem(item);
  return di.getCloseValue();
}


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

/**
 * Returns the high-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The high-value.
 */
public double getHighValue(int series, int item) {
  OHLCSeries s = (OHLCSeries) this.data.get(series);
  OHLCItem di = (OHLCItem) s.getDataItem(item);
  return di.getHighValue();
}


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

/**
 * Returns the low-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The low-value.
 */
public double getLowValue(int series, int item) {
  OHLCSeries s = (OHLCSeries) this.data.get(series);
  OHLCItem di = (OHLCItem) s.getDataItem(item);
  return di.getLowValue();
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns the low-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The low-value.
     */
/**
     * Returns the high-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The high-value.
     */
/**
     * Returns the close-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The close-value.
     */
/**
     * Returns the open-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The open-value.
     */
public double  [[#variable1a9217c0]](int series, int item) {
  OHLCSeries s = (OHLCSeries) this.data.get(series);
  OHLCItem di = (OHLCItem) s.getDataItem(item);
  return di. [[#variable1a9217c0]]();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a9217c0]]
getOpenValue 
12[[#1a9217c0]]
getCloseValue 
13[[#1a9217c0]]
getHighValue 
14[[#1a9217c0]]
getLowValue