CloneSet691


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
3320.974method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13210
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java
23249
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java
33262
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java
Next
Last
Clone Instance
1
Line Count
3
Source Line
210
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java

/**
 * Returns the y-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The y-value.
 */
public Number getY(int series, int item) {
  YIntervalSeries s = (YIntervalSeries) this.data.get(series);
  return new Double(s.getYValue(item));
}


Next
Previous
Clone Instance
2
Line Count
3
Source Line
249
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java

/**
 * Returns the start y-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The start y-value.
 */
public Number getStartY(int series, int item) {
  YIntervalSeries s = (YIntervalSeries) this.data.get(series);
  return new Double(s.getYLowValue(item));
}


First
Previous
Clone Instance
3
Line Count
3
Source Line
262
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/YIntervalSeriesCollection.java

/**
 * Returns the end y-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The end y-value.
 */
public Number getEndY(int series, int item) {
  YIntervalSeries s = (YIntervalSeries) this.data.get(series);
  return new Double(s.getYHighValue(item));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Returns the end y-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The end y-value.
     */
/**
     * Returns the start y-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The start y-value.
     */
/**
     * Returns the y-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The y-value.
     */
public Number  [[#variable18d10b20]](int series, int item) {
  YIntervalSeries s = (YIntervalSeries) this.data.get(series);
  return new Double(s. [[#variable18d119c0]](item));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18d10b20]]
getY 
12[[#18d10b20]]
getStartY 
13[[#18d10b20]]
getEndY 
21[[#18d119c0]]
getYValue 
22[[#18d119c0]]
getYLowValue 
23[[#18d119c0]]
getYHighValue