CloneSet1102


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

/**
 * Returns the y-value for the specified item.
 *
 * @param index  the item index.
 *
 * @return The y-value.
 */
public double getYValue(int index) {
  YIntervalDataItem item = (YIntervalDataItem) getDataItem(index);
  return item.getYValue();
}


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

/**
 * Returns the lower bound of the Y-interval for the specified item in the
 * series.
 * 
 * @param index  the item index.
 * 
 * @return The lower bound of the Y-interval.
 * 
 * @since 1.0.5
 */
public double getYLowValue(int index) {
  YIntervalDataItem item = (YIntervalDataItem) getDataItem(index);
  return item.getYLowValue();
}


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

/**
 * Returns the upper bound of the y-interval for the specified item in the
 * series.
 * 
 * @param index  the item index.
 * 
 * @return The upper bound of the y-interval.
 * 
 * @since 1.0.5
 */
public double getYHighValue(int index) {
  YIntervalDataItem item = (YIntervalDataItem) getDataItem(index);
  return item.getYHighValue();
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns the y-value for the specified item.
     *
     * @param index  the item index.
     *
     * @return The y-value.
     */
/**
     * Returns the lower bound of the Y-interval for the specified item in the
     * series.
     * 
     * @param index  the item index.
     * 
     * @return The lower bound of the Y-interval.
     * 
     * @since 1.0.5
     */
/**
     * Returns the upper bound of the y-interval for the specified item in the
     * series.
     * 
     * @param index  the item index.
     * 
     * @return The upper bound of the y-interval.
     * 
     * @since 1.0.5
     */
public double  [[#variable18e8db80]](int index) {
  YIntervalDataItem item = (YIntervalDataItem) getDataItem(index);
  return item. [[#variable18e8db80]]();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18e8db80]]
getYValue 
12[[#18e8db80]]
getYLowValue 
13[[#18e8db80]]
getYHighValue